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

Method visitComponent

packages/compiler/src/ml_parser/ast.ts:294–300  ·  view source on GitHub ↗
(component: Component, context: any)

Source from the content-addressed store, hash-verified

292 visitLetDeclaration(decl: LetDeclaration, context: any) {}
293
294 visitComponent(component: Component, context: any) {
295 this.visitChildren(context, (visit) => {
296 visit(component.attrs);
297 visit(component.comments);
298 visit(component.children);
299 });
300 }
301
302 visitDirective(directive: Directive, context: any) {
303 this.visitChildren(context, (visit) => {

Callers

nothing calls this directly

Calls 2

visitChildrenMethod · 0.95
visitFunction · 0.50

Tested by

no test coverage detected