removed unnecessary this. and .ToString and type specifying

This commit is contained in:
2026-01-11 02:23:50 +05:00
parent d1058d8fd5
commit e09e81073b
4 changed files with 73 additions and 76 deletions

View File

@@ -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)
{