diff options
author | AidenRushbrooke <72034940+AidenRushbrooke@users.noreply.github.com> | 2021-10-25 16:55:22 +0100 |
---|---|---|
committer | AidenRushbrooke <72034940+AidenRushbrooke@users.noreply.github.com> | 2021-10-25 16:55:22 +0100 |
commit | 74c5732bded6695eed3aabf125a888fbdf206a40 (patch) | |
tree | a429332a21ad595c190cae80264fbaf3bf19ed13 /code/Interpreter/Token.java | |
parent | cb29252f1e0d29d555fb232f39d343930fc76105 (diff) | |
download | esotericFORTRAN-74c5732bded6695eed3aabf125a888fbdf206a40.tar.gz esotericFORTRAN-74c5732bded6695eed3aabf125a888fbdf206a40.zip |
Interpreter capable of handing variables
Diffstat (limited to 'code/Interpreter/Token.java')
-rw-r--r-- | code/Interpreter/Token.java | 2 |
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; |