Esempio n. 1
0
 public VariableSym(string newLexeme, VariableSymKind newKind)
 {
     this.lexeme = newLexeme;
     this.kind   = newKind;
 }
Esempio n. 2
0
 public VariableSym(Token anchorToken, VariableSymKind kind)
 {
     this.kind        = kind;
     this.anchorToken = anchorToken;
 }
Esempio n. 3
0
 public VariableSym(Token anchorToken, VariableSymKind kind)
 {
     this.kind        = kind;
     this.anchorToken = anchorToken;
     this.lexeme      = anchorToken.Lexeme;
 }