| 68 | } |
| 69 | |
| 70 | export class ExpansionCase implements BaseNode { |
| 71 | constructor( |
| 72 | public value: string, |
| 73 | public expression: Node[], |
| 74 | public sourceSpan: ParseSourceSpan, |
| 75 | public valueSourceSpan: ParseSourceSpan, |
| 76 | public expSourceSpan: ParseSourceSpan, |
| 77 | ) {} |
| 78 | |
| 79 | visit(visitor: Visitor, context: any): any { |
| 80 | return visitor.visitExpansionCase(this, context); |
| 81 | } |
| 82 | } |
| 83 | |
| 84 | export class Attribute extends NodeWithI18n { |
| 85 | constructor( |
nothing calls this directly
no outgoing calls
no test coverage detected
searching dependent graphs…