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

Function visitArrayType

packages/compiler/src/output/abstract_emitter.ts:620–628  ·  view source on GitHub ↗
(type: o.ArrayType, ctx: EmitterVisitorContext)

Source from the content-addressed store, hash-verified

618 }
619
620 visitArrayType(type: o.ArrayType, ctx: EmitterVisitorContext): void {
621 if (!this.printTypes) {
622 return;
623 }
624
625 ctx.print(null, ': ');
626 type.of.visitType(this, ctx);
627 ctx.print(null, '[]');
628 }
629
630 visitMapType(type: o.MapType, ctx: EmitterVisitorContext): void {
631 if (!this.printTypes) {

Callers

nothing calls this directly

Calls 2

printMethod · 0.45
visitTypeMethod · 0.45

Tested by

no test coverage detected

Used in the wild real call sites across dependent graphs

searching dependent graphs…