(n, ctx)
| 102 | } |
| 103 | |
| 104 | static ConvertNumericLiteral (n, ctx) { |
| 105 | const found = findOne(ctx.plan, x => fuzzyMatch(n, x[1]), 'Finding Numeric Literal') |
| 106 | return { |
| 107 | type: found[0].type, |
| 108 | fields: { NUM: n.value }, |
| 109 | } |
| 110 | } |
| 111 | |
| 112 | static ConvertStringLiteral (n, ctx) { |
| 113 | const found = findOne(ctx.plan, x => fuzzyMatch(n, x[1]), 'Finding String Literal') |
no test coverage detected