MCPcopy
hub / github.com/angular/angular / IcuPlaceholder

Class IcuPlaceholder

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

Source from the content-addressed store, hash-verified

146}
147
148export class IcuPlaceholder implements Node {
149 /** Used to capture a message computed from a previous processing pass (see `setI18nRefs()`). */
150 previousMessage?: Message;
151 constructor(
152 public value: Icu,
153 public name: string,
154 public sourceSpan: ParseSourceSpan,
155 ) {}
156
157 visit(visitor: Visitor, context?: any): any {
158 return visitor.visitIcuPlaceholder(this, context);
159 }
160}
161
162export class BlockPlaceholder implements Node {
163 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…