(visitor: AstVisitor, context: any = null)
| 611 | ); |
| 612 | } |
| 613 | override visit(visitor: AstVisitor, context: any = null): any { |
| 614 | if (visitor.visitASTWithSource) { |
| 615 | return visitor.visitASTWithSource(this, context); |
| 616 | } |
| 617 | return this.ast.visit(visitor, context); |
| 618 | } |
| 619 | override toString(): string { |
| 620 | return `${this.source} in ${this.location}`; |
| 621 | } |
nothing calls this directly
no test coverage detected