(node)
| 284 | let patches = [] |
| 285 | let backJump = ";if (++__c % 1000 === 0) __sandbox.tick();" |
| 286 | function loop(node) { |
| 287 | if (node.body.type == "BlockStatement") { |
| 288 | patches.push({from: node.body.end - 1, text: backJump}) |
| 289 | } else { |
| 290 | patches.push({from: node.body.start, text: "{"}, |
| 291 | {from: node.body.end, text: backJump + "}"}) |
| 292 | } |
| 293 | } |
| 294 | let dependencies = [] |
| 295 | |
| 296 | walk.simple(ast, { |
nothing calls this directly
no outgoing calls
no test coverage detected