MCPcopy
hub / github.com/angular/angular / visit

Method visit

packages/compiler/test/expression_parser/ast_spec.ts:35–38  ·  view source on GitHub ↗
(node: AST, path: AST[])

Source from the content-addressed store, hash-verified

33
34class Visitor extends RecursiveAstVisitor {
35 override visit(node: AST, path: AST[]) {
36 path.push(node);
37 node.visit(this, path);
38 }
39}
40
41type Newable = new (...args: any) => any;

Callers

nothing calls this directly

Calls 2

visitMethod · 0.65
pushMethod · 0.45

Tested by

no test coverage detected