(arg: BaseNode)
| 87 | } |
| 88 | |
| 89 | function isBlockStatement(arg: BaseNode): arg is BlockStatement { |
| 90 | return arg.type == 'BlockStatement'; |
| 91 | } |
| 92 | |
| 93 | function isFunctionDeclaration(arg: BaseNode): arg is FunctionDeclaration { |
| 94 | return arg.type == 'FunctionDeclaration'; |
no outgoing calls
no test coverage detected