| 73 | } |
| 74 | |
| 75 | export interface Node { |
| 76 | sourceSpan: ParseSourceSpan; |
| 77 | visit(visitor: Visitor, context?: any): any; |
| 78 | } |
| 79 | |
| 80 | export class Text implements Node { |
| 81 | constructor( |
nothing calls this directly
no outgoing calls
no test coverage detected
searching dependent graphs…