| 183 | } |
| 184 | |
| 185 | export class Directive implements BaseNode { |
| 186 | constructor( |
| 187 | readonly name: string, |
| 188 | readonly attrs: Attribute[], |
| 189 | readonly sourceSpan: ParseSourceSpan, |
| 190 | readonly startSourceSpan: ParseSourceSpan, |
| 191 | readonly endSourceSpan: ParseSourceSpan | null = null, |
| 192 | ) {} |
| 193 | |
| 194 | visit(visitor: Visitor, context: any): any { |
| 195 | return visitor.visitDirective(this, context); |
| 196 | } |
| 197 | } |
| 198 | |
| 199 | export class BlockParameter implements BaseNode { |
| 200 | constructor( |
nothing calls this directly
no outgoing calls
no test coverage detected
searching dependent graphs…