Function Call Arguments AST Python 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:
my_function(arg1, arg2)
Attributes
values
(array ofFunctionCallArgument
): a list of arguments