(names, constants)
| 842 | return `${this.code}` ? this : undefined; |
| 843 | } |
| 844 | optimizeNames(names, constants) { |
| 845 | this.code = optimizeExpr(this.code, names, constants); |
| 846 | return this; |
| 847 | } |
| 848 | get names() { |
| 849 | return this.code instanceof code_1._CodeOrName ? this.code.names : {}; |
| 850 | } |
nothing calls this directly
no test coverage detected