(ctx: FunctionCallContext)
| 340 | } |
| 341 | |
| 342 | visitFunctionCall(ctx: FunctionCallContext): FunctionCallNode { |
| 343 | const identifier = new IdentifierNode(ctx.Identifier().getText()); |
| 344 | identifier.location = Location.fromToken(ctx.Identifier().symbol); |
| 345 | const parameters = ctx.expressionList().expression_list().map((e) => this.visit(e)); |
| 346 | const functionCall = new FunctionCallNode(identifier, parameters); |
| 347 | functionCall.location = Location.fromCtx(ctx); |
| 348 | return functionCall; |
| 349 | } |
| 350 | |
| 351 | visitInstantiation(ctx: InstantiationContext): InstantiationNode { |
| 352 | const identifier = new IdentifierNode(ctx.Identifier().getText()); |
no test coverage detected