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