(arg: BaseNode)
| 99 | } |
| 100 | |
| 101 | function isExpressionStatement(arg: BaseNode): arg is ExpressionStatement { |
| 102 | return arg.type == 'ExpressionStatement'; |
| 103 | } |
| 104 | |
| 105 | function isAssignmentExpression(arg: BaseNode): arg is AssignmentExpression { |
| 106 | return arg.type == 'AssignmentExpression'; |
no outgoing calls
no test coverage detected