()
| 16846 | if (args.length === 1 && args[0] instanceof ast.For) { |
| 16847 | const [stmt] = args; |
| 16848 | const emit_body = () => this.emitStatements(stmt.body); |
| 16849 | this.emitFor(stmt.target, stmt.iter, stmt.range(), emit_body); |
| 16850 | } else if (args.length === 4) { |
| 16851 | const [targets, itrs, loc, emit_body] = args; |
nothing calls this directly
no test coverage detected