FuncCall constructor
- IdentifierNode identifier,
- ArgumentList args
Constructs a function call with the function name and arguments.
Parameters:
identifier: The name of the function to callargs: The list of arguments to pass to the function
Implementation
FuncCall(IdentifierNode identifier, ArgumentList args)
: super(null, [identifier, args]);