Lines Matching refs:before
4 function walkAST(ast, before, after, options) { argument
22 if (before) {
23 var result = before(ast, replace);
48 ast.block = walkAST(ast.block, before, after, options);
53 ast.block = walkAST(ast.block, before, after, options);
56 ast.alternate = walkAST(ast.alternate, before, after, options);
61 ast.consequent = walkAST(ast.consequent, before, after, options);
64 ast.alternate = walkAST(ast.alternate, before, after, options);
68 walkAST(ast.block, before, after, options);
69 walkAST(ast.file, before, after, options);
72 walkAST(ast.file, before, after, options);
76 walkAST(ast.file, before, after, options);
89 walkAST(ast.ast, before, after, options);
104 var result = walkAST(node, before, after, options);