(n, ctx)
| 110 | } |
| 111 | |
| 112 | static ConvertStringLiteral (n, ctx) { |
| 113 | const found = findOne(ctx.plan, x => fuzzyMatch(n, x[1]), 'Finding String Literal') |
| 114 | return { |
| 115 | type: found[0].type, |
| 116 | fields: { TEXT: n.value }, |
| 117 | } |
| 118 | } |
| 119 | |
| 120 | static ConvertBooleanLiteral (n, ctx) { |
| 121 | const found = findOne(ctx.plan, x => fuzzyMatch(n, x[1]), 'Finding Boolean Literal') |
no test coverage detected