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

Variables

fName
string fName;

the name of the function

id
uinteger id;

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

isInBuilt
bool isInBuilt;

if the function being called in in built QScript function

isScriptDefined
bool isScriptDefined;

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

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