Private
_localPrivate
Readonly
_localThe instructions executed when this function is invoked.
Readonly
moduleReadonly
typeThe signature type of this function.
A list containing the types of the local variables defined within this functions body. Does not include parameters.
A list of the parameters of this function.
A list of the results of this function. Empty for functions which return nothing.
Adds a new local variable to this function.
The type of the new local variable.
A reference to the new local variable.
Adds a new parameter to this function.
The type of the new parameter.
A reference to the new parameter.
Gets a reference to an existing local variable of this function. Use getParameter for parameters.
Ths index of the local variable. Does not include parameters. Local variable 0 is the first non-parameter local.
A reference to the local variable.
Gets a reference to an existing parameter of this function.
The index of the parameter.
A reference to the parameter.
Removes local variables from this function and inserts new ones in their place. Parameters and return values are the same as Javascript's Array.splice method.
Rest
...items: SpiderValueType[]Generated using TypeDoc
A function defined within this module.