(n, ctx)
| 138 | } |
| 139 | |
| 140 | static ConvertContinueStatement (n, ctx) { |
| 141 | return findOne(ctx.plan, x => fuzzyMatch(n, x[1]), 'Can\'t find the continue statement')[0] |
| 142 | } |
| 143 | |
| 144 | static ConvertArrayExpression (n, ctx) { |
| 145 | const found = findOne(ctx.plan, x => fuzzyMatch(n, x[1]), 'Can\'t find the array expression') |
nothing calls this directly
no test coverage detected