(opts)
| 904 | this.condition = condition; |
| 905 | } |
| 906 | render(opts) { |
| 907 | let code = `if(${this.condition})` + super.render(opts); |
| 908 | if (this.else) |
| 909 | code += "else " + this.else.render(opts); |
| 910 | return code; |
| 911 | } |
| 912 | optimizeNodes() { |
| 913 | super.optimizeNodes(); |
| 914 | const cond = this.condition; |
no outgoing calls
no test coverage detected