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

Class Text

packages/compiler/src/render3/r3_ast.ts:43–51  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

41}
42
43export class Text implements Node {
44 constructor(
45 public value: string,
46 public sourceSpan: ParseSourceSpan,
47 ) {}
48 visit<Result>(visitor: Visitor<Result>): Result {
49 return visitor.visitText(this);
50 }
51}
52
53export class BoundText implements Node {
54 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…