* This function is optionally defined to allow classes that implement this * interface to selectively decide if the specified `ast` should be visited. * @param ast node to visit * @param context context that gets passed to the node and all its children
(ast: AST, context?: any)
| 724 | * @param context context that gets passed to the node and all its children |
| 725 | */ |
| 726 | visit?(ast: AST, context?: any): any; |
| 727 | } |
| 728 | |
| 729 | export class RecursiveAstVisitor implements AstVisitor { |
no outgoing calls
no test coverage detected