( expr: Expression | null | undefined )
| 14 | }; |
| 15 | |
| 16 | function isNumber( |
| 17 | expr: Expression | null | undefined |
| 18 | ): expr is Expression & NumberLiteralInterface { |
| 19 | return expr?._kind === 'number'; |
| 20 | } |
| 21 | |
| 22 | function isSymbol( |
| 23 | expr: Expression | null | undefined |
no outgoing calls
no test coverage detected