FunctionValue

Function contents of a Value

Members

Functions

ccall
Value[] ccall(Value[] args)

Call this function value with the given parameters, running it in a toplevel thread.

rawcall
Value[] rawcall(Value[] args)

Call this function value with the given parameters in the current context.

Variables

engine
Engine engine;

The engine to use when calling this function

env
TableValue env;

The environment of this function

ip
size_t ip;

Denotes the implementation-defined position at which this function is found in the code

upvalues
Value*[] upvalues;

A list of upvalues that partain to this function

Meta