From 74c5732bded6695eed3aabf125a888fbdf206a40 Mon Sep 17 00:00:00 2001 From: AidenRushbrooke <72034940+AidenRushbrooke@users.noreply.github.com> Date: Mon, 25 Oct 2021 16:55:22 +0100 Subject: Interpreter capable of handing variables --- code/Interpreter/Token.java | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'code/Interpreter/Token.java') 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; -- cgit v1.2.3