MCPcopy Index your code
hub / github.com/angular/angular / visitElement

Method visitElement

packages/compiler/src/ml_parser/ast.ts:261–268  ·  view source on GitHub ↗
(ast: Element, context: any)

Source from the content-addressed store, hash-verified

259 constructor() {}
260
261 visitElement(ast: Element, context: any): any {
262 this.visitChildren(context, (visit) => {
263 visit(ast.attrs);
264 visit(ast.directives);
265 visit(ast.comments);
266 visit(ast.children);
267 });
268 }
269
270 visitAttribute(ast: Attribute, context: any): any {}
271 visitStartTagComment(ast: StartTagComment, context: any): any {}

Callers

nothing calls this directly

Calls 2

visitChildrenMethod · 0.95
visitFunction · 0.50

Tested by

no test coverage detected