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

Method visitTemplate

packages/compiler/src/render3/r3_ast.ts:776–784  ·  view source on GitHub ↗
(template: Template)

Source from the content-addressed store, hash-verified

774 visitAll(this, element.references);
775 }
776 visitTemplate(template: Template): void {
777 visitAll(this, template.attributes);
778 visitAll(this, template.inputs);
779 visitAll(this, template.outputs);
780 visitAll(this, template.directives);
781 visitAll(this, template.children);
782 visitAll(this, template.references);
783 visitAll(this, template.variables);
784 }
785 visitDeferredBlock(deferred: DeferredBlock): void {
786 deferred.visitAll(this);
787 }

Callers

nothing calls this directly

Calls 1

visitAllFunction · 0.70

Tested by

no test coverage detected