FunctionCallNode

to store functionCall nodes

Constructors

this
this(string functionName, CodeNode[] functionArguments)

constructor

Members

Properties

arguments
CodeNode[] arguments [@property getter]

returns the values for arguments

arguments
CodeNode[] arguments [@property setter]

sets value for storedArguments

isScriptDefined
deprecated bool isScriptDefined [@property getter]

if the function being called is script defined or not, assigned after checkAST has been called on this

Variables

fName
string fName;

the name of the function

id
integer id;

the id of the function, assigned after checkAST has been called on this

libraryId
integer libraryId;

the id of the library this function is from.

lineno
uinteger lineno;

the line number (starts from 1) from which this node begins, or ends

returnType
DataType returnType;

stores the return type. Only stored after ASTCheck has checked it

Meta