(e: Expression)
| 1476 | } |
| 1477 | |
| 1478 | override isEquivalent(e: Expression): boolean { |
| 1479 | return e instanceof CommaExpr && areAllEquivalent(this.parts, e.parts); |
| 1480 | } |
| 1481 | |
| 1482 | override isConstant() { |
| 1483 | return false; |
nothing calls this directly
no test coverage detected