예제 #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
파일: Block.cs 프로젝트: Hengle/SharpLua-1
 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
파일: Block.cs 프로젝트: Hengle/SharpLua-1
 public Block()
 {
     Chunk = new Chunk();
     K     = new K2Reg(this);
 }