示例#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;
 }