( expr: Expression | null | undefined )
| 20 | } |
| 21 | |
| 22 | function isSymbol( |
| 23 | expr: Expression | null | undefined |
| 24 | ): expr is Expression & SymbolInterface { |
| 25 | return expr?._kind === 'symbol'; |
| 26 | } |
| 27 | |
| 28 | function isFunction( |
| 29 | expr: Expression | null | undefined, |
no outgoing calls
no test coverage detected