예제 #1
0
파일: Closure.cs 프로젝트: stroan/Lamn
 public Closure(Function func, StackCell[] closedVars)
 {
     Func = func;
     ClosedVars = closedVars;
 }
예제 #2
0
 public InstructionPointer(Function currentFunction, StackCell[] closedVars, int instructionIndex)
 {
     CurrentFunction = currentFunction;
     ClosedVars = closedVars;
     InstructionIndex = instructionIndex;
 }