diff options
Diffstat (limited to 'code/Interpreter/Token.java')
-rw-r--r-- | code/Interpreter/Token.java | 23 |
1 files changed, 0 insertions, 23 deletions
diff --git a/code/Interpreter/Token.java b/code/Interpreter/Token.java deleted file mode 100644 index 0129b78..0000000 --- a/code/Interpreter/Token.java +++ /dev/null @@ -1,23 +0,0 @@ -package Interpreter; - -public class Token { - - - //Stores the token type, the actual text and the runtime object - public final TokenType type; - final String text; - final Object value; - - - Token(TokenType type, String text, Object value){ - this.type=type; - this.text=text; - this.value=value; - - } - - @Override - public String toString() { - return type + " " + text + " " + value; - } -} |