Class FunctionCallExpression

Function call expression (e.g., add(1, 2)).

class FunctionCallExpression
  : Expression;

Constructors

NameDescription
this (name, arguments, line, column) Creates a function call expression.

Fields

NameTypeDescription
arguments Expression[]The argument expressions
name stringThe function name
column ulongColumn number where this node starts in source
line ulongLine number where this node appears in source