예제 #1
0
파일: Scope.cs 프로젝트: Blecki/DCPUB
 internal Scope Push()
 {
     var child = new Scope();
     return Push(child);
 }
예제 #2
0
파일: Scope.cs 프로젝트: Blecki/DCPUB
 internal Scope Push(Scope child)
 {
     child.parent = this;
     child.variablesOnStack = variablesOnStack;
     child.parentDepth = variablesOnStack;
     child.activeFunction = activeFunction;
     return child;
 }