(visitor: AstVisitor<T>)
| 266 | } |
| 267 | |
| 268 | accept<T>(visitor: AstVisitor<T>): T { |
| 269 | return visitor.visitFunctionCall(this); |
| 270 | } |
| 271 | } |
| 272 | |
| 273 | export class InstantiationNode extends ExpressionNode { |
nothing calls this directly
no test coverage detected