MCPcopy
hub / github.com/angular/angular / Container

Class Container

packages/compiler/src/i18n/i18n_ast.ts:92–101  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

90
91// TODO(vicb): do we really need this node (vs an array) ?
92export class Container implements Node {
93 constructor(
94 public children: Node[],
95 public sourceSpan: ParseSourceSpan,
96 ) {}
97
98 visit(visitor: Visitor, context?: any): any {
99 return visitor.visitContainer(this, context);
100 }
101}
102
103export class Icu implements Node {
104 constructor(

Callers

nothing calls this directly

Calls

no outgoing calls

Tested by

no test coverage detected

Used in the wild real call sites across dependent graphs

searching dependent graphs…