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