| 131 | } |
| 132 | |
| 133 | export class Comment implements BaseNode { |
| 134 | constructor( |
| 135 | public value: string | null, |
| 136 | public sourceSpan: ParseSourceSpan, |
| 137 | ) {} |
| 138 | visit(visitor: Visitor, context: any): any { |
| 139 | return visitor.visitComment(this, context); |
| 140 | } |
| 141 | } |
| 142 | |
| 143 | export class Block extends NodeWithI18n { |
| 144 | constructor( |
nothing calls this directly
no outgoing calls
no test coverage detected
searching dependent graphs…