(e: Expression)
| 453 | } |
| 454 | |
| 455 | override isEquivalent(e: Expression): boolean { |
| 456 | return ( |
| 457 | e instanceof InvokeFunctionExpr && |
| 458 | this.fn.isEquivalent(e.fn) && |
| 459 | areAllEquivalent(this.args, e.args) && |
| 460 | this.pure === e.pure |
| 461 | ); |
| 462 | } |
| 463 | |
| 464 | override isConstant() { |
| 465 | return false; |
nothing calls this directly
no test coverage detected