示例#1
0
 public _Local(CodeGen owner)
 {
     this.owner = owner;
     scope      = owner.GetBlockForVariable();
 }
示例#2
0
 public _Local(CodeGen owner, Type t)
 {
     this.owner = owner; this.t = t;
     scope      = owner.GetBlockForVariable();
 }
示例#3
0
 public _Local(CodeGen owner, Type t)
 {
     _owner = owner; _t = t;
     _scope = owner.GetBlockForVariable();
 }
			public _Local(CodeGen owner, Type t)
			{
				this.owner = owner; this.t = t;
				scope = owner.GetBlockForVariable();
			}
			public _Local(CodeGen owner)
			{
				this.owner = owner;
				scope = owner.GetBlockForVariable();
			}
示例#6
0
			public _Local(CodeGen owner, Type t)
			{
				_owner = owner; _t = t;
				_scope = owner.GetBlockForVariable();
			}
示例#7
0
 internal _Local(CodeGen owner)
 {
     _owner = owner;
     _scope = owner.GetBlockForVariable();
 }