(opts)
| 977 | this.to = to; |
| 978 | } |
| 979 | render(opts) { |
| 980 | const varKind = opts.es5 ? scope_1.varKinds.var : this.varKind; |
| 981 | const { name, from, to } = this; |
| 982 | return `for(${varKind} ${name}=${from}; ${name}<${to}; ${name}++)` + super.render(opts); |
| 983 | } |
| 984 | get names() { |
| 985 | const names = addExprNames(super.names, this.from); |
| 986 | return addExprNames(names, this.to); |