(expr: unknown)
| 67 | |
| 68 | // Helper to check if result is a Func |
| 69 | function isFunc(expr: unknown): expr is Func { |
| 70 | return expr instanceof Func |
| 71 | } |
| 72 | |
| 73 | // Helper to get operator name from Func |
| 74 | function getFuncName(expr: Func): string { |
no outgoing calls
no test coverage detected