| 101 | } |
| 102 | |
| 103 | export class Icu implements Node { |
| 104 | constructor( |
| 105 | public expression: string, |
| 106 | public type: string, |
| 107 | public cases: {[k: string]: Node}, |
| 108 | public sourceSpan: ParseSourceSpan, |
| 109 | public expressionPlaceholder?: string, |
| 110 | ) {} |
| 111 | |
| 112 | visit(visitor: Visitor, context?: any): any { |
| 113 | return visitor.visitIcu(this, context); |
| 114 | } |
| 115 | } |
| 116 | |
| 117 | export class TagPlaceholder implements Node { |
| 118 | constructor( |
nothing calls this directly
no outgoing calls
no test coverage detected