MCPcopy
hub / github.com/angular/angular / Icu

Class Icu

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

Source from the content-addressed store, hash-verified

101}
102
103export class Icu implements Node {
104 constructor(
105 public expression: string,
106 public type: string,
107 public cases: {[k: string]: Node},
108 public sourceSpan: ParseSourceSpan,
109 public expressionPlaceholder?: string,
110 ) {}
111
112 visit(visitor: Visitor, context?: any): any {
113 return visitor.visitIcu(this, context);
114 }
115}
116
117export class TagPlaceholder implements Node {
118 constructor(

Callers

nothing calls this directly

Calls

no outgoing calls

Tested by

no test coverage detected