(e: Expression)
| 144 | * act on at all? Keeps the trial expansion below from calling `expand()` on |
| 145 | * every expression that reaches the fixpoint. |
| 146 | */ |
| 147 | function mightExpand(expr: Expression): boolean { |
| 148 | if (!isFunction(expr)) return false; |
| 149 | if ( |
no test coverage detected