(e: Expression)
| 991 | } |
| 992 | |
| 993 | override isEquivalent(e: Expression): boolean { |
| 994 | return e instanceof NotExpr && this.condition.isEquivalent(e.condition); |
| 995 | } |
| 996 | |
| 997 | override isConstant() { |
| 998 | return false; |
nothing calls this directly
no test coverage detected