(names, constants)
| 757 | return `${varKind} ${this.name}${rhs};` + _n; |
| 758 | } |
| 759 | optimizeNames(names, constants) { |
| 760 | if (!names[this.name.str]) |
| 761 | return; |
| 762 | if (this.rhs) |
| 763 | this.rhs = optimizeExpr(this.rhs, names, constants); |
| 764 | return this; |
| 765 | } |
| 766 | get names() { |
| 767 | return this.rhs instanceof code_1._CodeOrName ? this.rhs.names : {}; |
| 768 | } |
nothing calls this directly
no test coverage detected