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

Class Text

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

Source from the content-addressed store, hash-verified

78}
79
80export class Text implements Node {
81 constructor(
82 public value: string,
83 public sourceSpan: ParseSourceSpan,
84 ) {}
85
86 visit(visitor: Visitor, context?: any): any {
87 return visitor.visitText(this, context);
88 }
89}
90
91// TODO(vicb): do we really need this node (vs an array) ?
92export class Container implements Node {

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…