示例#1
0
文件: Block.cs 项目: chenzuo/SharpLua
 public Block(Block parent)
 {
     K = new K2Reg(this);
     //parent.PreviousBlock = this;
     this.PreviousBlock = parent;
     V = new Var2Reg(parent.V);
     Chunk = parent.Chunk;
 }
示例#2
0
 public Block(Block parent)
 {
     K = new K2Reg(this);
     //parent.PreviousBlock = this;
     this.PreviousBlock = parent;
     V     = new Var2Reg(parent.V);
     Chunk = parent.Chunk;
 }
示例#3
0
文件: Block.cs 项目: chenzuo/SharpLua
 public Block()
 {
     Chunk = new Chunk();
     K = new K2Reg(this);
 }
示例#4
0
 public Block()
 {
     Chunk = new Chunk();
     K     = new K2Reg(this);
 }