Beispiel #1
0
 internal Token(Parser.TType type)
 {
     this.type = type;
 }
Beispiel #2
0
 public StrToken(Parser.TType type, string str)
     : base(type)
 {
     this.str = str;
 }