(n, ctx)
| 118 | } |
| 119 | |
| 120 | static ConvertBooleanLiteral (n, ctx) { |
| 121 | const found = findOne(ctx.plan, x => fuzzyMatch(n, x[1]), 'Finding Boolean Literal') |
| 122 | return { |
| 123 | type: found[0].type, |
| 124 | fields: { BOOL: n.value ? 'TRUE' : 'FALSE' }, |
| 125 | } |
| 126 | } |
| 127 | |
| 128 | static ConvertBlockStatement (n, ctx) { |
| 129 | return convert(n.body, { ...ctx, context: 'statement' }) |
no test coverage detected