summaryrefslogtreecommitdiffstats
path: root/code/Interpreter/Token.java
diff options
context:
space:
mode:
Diffstat (limited to 'code/Interpreter/Token.java')
-rw-r--r--code/Interpreter/Token.java2
1 files changed, 1 insertions, 1 deletions
diff --git a/code/Interpreter/Token.java b/code/Interpreter/Token.java
index b1cf542..0129b78 100644
--- a/code/Interpreter/Token.java
+++ b/code/Interpreter/Token.java
@@ -4,7 +4,7 @@ public class Token {
//Stores the token type, the actual text and the runtime object
- final TokenType type;
+ public final TokenType type;
final String text;
final Object value;