Example #1
0
		internal ExecutionScope (CompilationContext context, int compilation_unit, ExecutionScope parent, object [] locals)
			: this (context, compilation_unit)
		{
			this.Parent = parent;
			this.Locals = locals;
		}
Example #2
0
 internal ExecutionScope(CompilationContext context, int compilation_unit, ExecutionScope parent, object [] locals)
     : this(context, compilation_unit)
 {
     this.Parent = parent;
     this.Locals = locals;
 }
 internal ExecutionScope()
 {
     Parent = null;
     Globals = null;
     Locals = null;
 }
Example #4
0
 internal ExecutionScope(CompilationContext context, int compilationUnit, ExecutionScope parent, object[] locals)
     : this(context, compilationUnit)
 {
     _parent = parent;
     _locals = locals;
 }
Example #5
0
 internal ExecutionScope()
 {
     Parent  = null;
     Globals = null;
     Locals  = null;
 }