FuncCall constructor

FuncCall(
  1. IdentifierNode identifier,
  2. ArgumentList args
)

Constructs a function call with the function name and arguments.

Parameters:

  • identifier: The name of the function to call
  • args: The list of arguments to pass to the function

Implementation

FuncCall(IdentifierNode identifier, ArgumentList args)
    : super(null, [identifier, args]);