(arg: BaseNode)
| 83 | } |
| 84 | |
| 85 | function isClassExpression(arg: BaseNode): arg is ClassExpression { |
| 86 | return arg.type == 'ClassExpression'; |
| 87 | } |
| 88 | |
| 89 | function isBlockStatement(arg: BaseNode): arg is BlockStatement { |
| 90 | return arg.type == 'BlockStatement'; |