Exemple #1
0
 public GlobalToken(GlobalTokenType type, UInt32 line, String text)
 {
     this.type = type;
     this.line = line;
     this.text = text;
 }
Exemple #2
0
 public GlobalToken(GlobalTokenType type, UInt32 line)
 {
     this.type = type;
     this.line = line;
     this.text = null;
 }