(names, constants)
| 959 | return `for(${this.iteration})` + super.render(opts); |
| 960 | } |
| 961 | optimizeNames(names, constants) { |
| 962 | if (!super.optimizeNames(names, constants)) |
| 963 | return; |
| 964 | this.iteration = optimizeExpr(this.iteration, names, constants); |
| 965 | return this; |
| 966 | } |
| 967 | get names() { |
| 968 | return addNames(super.names, this.iteration.names); |
| 969 | } |
nothing calls this directly
no test coverage detected