(n, ctx)
| 134 | } |
| 135 | |
| 136 | static ConvertBreakStatement (n, ctx) { |
| 137 | return findOne(ctx.plan, x => fuzzyMatch(n, x[1]), 'Can\'t find the break statement')[0] |
| 138 | } |
| 139 | |
| 140 | static ConvertContinueStatement (n, ctx) { |
| 141 | return findOne(ctx.plan, x => fuzzyMatch(n, x[1]), 'Can\'t find the continue statement')[0] |
nothing calls this directly
no test coverage detected