MCPcopy Create free account
hub / github.com/angular/angular / visitTemplate

Method visitTemplate

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

Source from the content-addressed store, hash-verified

794 visitAll(this, element.references);
795 }
796 visitTemplate(template: Template): void {
797 visitAll(this, template.attributes);
798 visitAll(this, template.inputs);
799 visitAll(this, template.outputs);
800 visitAll(this, template.directives);
801 visitAll(this, template.children);
802 visitAll(this, template.references);
803 visitAll(this, template.variables);
804 }
805 visitDeferredBlock(deferred: DeferredBlock): void {
806 deferred.visitAll(this);
807 }

Callers

nothing calls this directly

Calls 1

visitAllFunction · 0.70

Tested by

no test coverage detected