(arg: BaseNode)
| 67 | test(); |
| 68 | |
| 69 | function isProgram(arg: BaseNode): arg is Program { |
| 70 | return arg.type == 'Program'; |
| 71 | } |
| 72 | |
| 73 | function isImportDeclaration(arg: BaseNode): arg is ImportDeclaration { |
| 74 | return arg.type == 'ImportDeclaration'; |
no outgoing calls
no test coverage detected