Lines Matching refs:after
4 function walkAST(ast, before, after, options) { argument
5 if (after && typeof after === 'object' && typeof options === 'undefined') {
6 options = after;
7 after = null;
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);
99 after && after(ast, replace);
104 var result = walkAST(node, before, after, options);