public Closure(Function func, StackCell[] closedVars) { Func = func; ClosedVars = closedVars; }
public InstructionPointer(Function currentFunction, StackCell[] closedVars, int instructionIndex) { CurrentFunction = currentFunction; ClosedVars = closedVars; InstructionIndex = instructionIndex; }