MCPcopy Create free account
hub / github.com/angular/angular / BoundText

Class BoundText

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

Source from the content-addressed store, hash-verified

51}
52
53export class BoundText implements Node {
54 constructor(
55 public value: AST,
56 public sourceSpan: ParseSourceSpan,
57 public i18n?: I18nMeta,
58 ) {}
59 visit<Result>(visitor: Visitor<Result>): Result {
60 return visitor.visitBoundText(this);
61 }
62}
63
64/**
65 * Represents a text attribute in the template.

Callers

nothing calls this directly

Calls

no outgoing calls

Tested by

no test coverage detected