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

Class TextAttribute

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

Source from the content-addressed store, hash-verified

68 * `keySpan` may also not be present for synthetic attributes from ICU expansions.
69 */
70export class TextAttribute implements Node {
71 constructor(
72 public name: string,
73 public value: string,
74 public sourceSpan: ParseSourceSpan,
75 readonly keySpan: ParseSourceSpan | undefined,
76 public valueSpan?: ParseSourceSpan,
77 public i18n?: I18nMeta,
78 ) {}
79 visit<Result>(visitor: Visitor<Result>): Result {
80 return visitor.visitTextAttribute(this);
81 }
82}
83
84export class BoundAttribute implements Node {
85 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…