Function Call Arguments AST JavaScript Object
The FunctionCallArguments
object matches the arguments in a function call
The astType
value for this node is arguments
.
Code Pattern
This AST element captures the (arg1, arg2)
part of following code:
myFunction(arg1, arg2);
Attributes
values
(array ofFunctionCallArgument
): a list of arguments