(e: Expression | Statement)
| 1035 | } |
| 1036 | |
| 1037 | override isEquivalent(e: Expression | Statement): boolean { |
| 1038 | return ( |
| 1039 | (e instanceof FunctionExpr || e instanceof DeclareFunctionStmt) && |
| 1040 | areAllEquivalent(this.params, e.params) && |
| 1041 | areAllEquivalent(this.statements, e.statements) |
| 1042 | ); |
| 1043 | } |
| 1044 | |
| 1045 | override isConstant() { |
| 1046 | return false; |
nothing calls this directly
no test coverage detected