(e: Expression)
| 923 | } |
| 924 | |
| 925 | override isEquivalent(e: Expression): boolean { |
| 926 | return ( |
| 927 | e instanceof ConditionalExpr && |
| 928 | this.condition.isEquivalent(e.condition) && |
| 929 | this.trueCase.isEquivalent(e.trueCase) && |
| 930 | nullSafeIsEquivalent(this.falseCase, e.falseCase) |
| 931 | ); |
| 932 | } |
| 933 | |
| 934 | override isConstant() { |
| 935 | return false; |
nothing calls this directly
no test coverage detected