Example #1
0
 internal bool Peek(IRTokenType tok)
 {
     throw new NotImplementedException();
 }
Example #2
0
 private Token Expect(IRTokenType type)
 {
     throw new NotImplementedException();
 }
Example #3
0
 public Token(IRTokenType type)
 {
     this.Type  = type;
     this.Value = null;
 }