Exemple #1
0
 public Token(Common.Token_Type type, string lexeme, double value, Common.FuncPtr func)
 {
     this.type   = type;
     this.lexeme = lexeme;
     this.value  = value;
     this.func   = func;
 }
Exemple #2
0
 //含参构造函数
 public Token(Common.TokenType type, string lexeme, double value, Common.FuncPtr func)
 {
     Type   = type;
     Lexeme = lexeme;
     Value  = value;
     Func   = func;
 }