| 51 | } |
| 52 | |
| 53 | export 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. |
nothing calls this directly
no outgoing calls
no test coverage detected
searching dependent graphs…