forked from Lunya-sh/Evil_Calculator
removed unnecessary this. and .ToString and type specifying
This commit is contained in:
@@ -2,12 +2,16 @@
|
||||
{
|
||||
internal class Token
|
||||
{
|
||||
public enum TokenType { Operator, Operand };
|
||||
public enum TokenType
|
||||
{
|
||||
Operator,
|
||||
Operand,
|
||||
}
|
||||
|
||||
public TokenType tokenType;
|
||||
public string value = "";
|
||||
public string value;
|
||||
public int? priority;
|
||||
|
||||
public Token() { }
|
||||
|
||||
public Token(TokenType tokenType, string value)
|
||||
{
|
||||
|
||||
Reference in New Issue
Block a user