(e: Expression)
| 395 | } |
| 396 | |
| 397 | override isEquivalent(e: Expression): boolean { |
| 398 | return e instanceof VoidExpr && e.expr.isEquivalent(this.expr); |
| 399 | } |
| 400 | |
| 401 | override isConstant(): boolean { |
| 402 | return this.expr.isConstant(); |
nothing calls this directly
no test coverage detected