Exemple #1
0
        public IntToken InsertIntToken()
        {
            IntToken token = new IntToken(stream, CurrentLocation);

            WriteInt32(0);
            return(token);
        }
Exemple #2
0
 public void SetJumpSite(IntToken jumpSite)
 {
     if (jumpSite == null)
     {
         throw new ArgumentNullException("jumpSite");
     }
     this.jumpSite32.Add(jumpSite);
     if (destinationSet)
     {
         Complete();
     }
 }
Exemple #3
0
 public NumberToken(IntToken itoken)
 {
     this.itoken = itoken;
 }