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