Codiga has joined Datadog!

Read the Blog
Skip to main content

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 of FunctionCallArgument): a list of arguments

See also