示例#1
0
文件: Region.cs 项目: bartwe/plukc
        public IntToken InsertIntToken()
        {
            IntToken token = new IntToken(stream, CurrentLocation);

            WriteInt32(0);
            return(token);
        }
示例#2
0
 public void SetJumpSite(IntToken jumpSite)
 {
     if (jumpSite == null)
     {
         throw new ArgumentNullException("jumpSite");
     }
     this.jumpSite32.Add(jumpSite);
     if (destinationSet)
     {
         Complete();
     }
 }
示例#3
0
文件: Region.cs 项目: bartwe/plukc
 public NumberToken(IntToken itoken)
 {
     this.itoken = itoken;
 }