(e: Expression)
| 368 | } |
| 369 | |
| 370 | override isEquivalent(e: Expression): boolean { |
| 371 | return e instanceof TypeofExpr && e.expr.isEquivalent(this.expr); |
| 372 | } |
| 373 | |
| 374 | override isConstant(): boolean { |
| 375 | return this.expr.isConstant(); |
nothing calls this directly
no test coverage detected