(expr: Func)
| 72 | |
| 73 | // Helper to get operator name from Func |
| 74 | function getFuncName(expr: Func): string { |
| 75 | return expr.name |
| 76 | } |
| 77 | |
| 78 | // Helper to recursively count operators in an expression |
| 79 | function countOperators(expr: unknown, name: string): number { |
no outgoing calls
no test coverage detected