summaryrefslogtreecommitdiff
path: root/st/TypeEnum.java
diff options
context:
space:
mode:
authorbd-912 <bdunahu@colostate.edu>2024-03-27 22:53:08 -0600
committerbd-912 <bdunahu@colostate.edu>2024-03-27 22:53:08 -0600
commitb01fe1e8e5541d6c11f905d7fbb949d747f29230 (patch)
treed348b6b471fa2ebb2cece61daaf672c8b27b4299 /st/TypeEnum.java
parent8131ddc22af5d39114a55349d71bcdc467599187 (diff)
SymbolTable to separate library, Class/Method Instances
Diffstat (limited to 'st/TypeEnum.java')
-rw-r--r--st/TypeEnum.java5
1 files changed, 5 insertions, 0 deletions
diff --git a/st/TypeEnum.java b/st/TypeEnum.java
new file mode 100644
index 0000000..f6fc6ae
--- /dev/null
+++ b/st/TypeEnum.java
@@ -0,0 +1,5 @@
+package st;
+
+public enum TypeEnum {
+ classname, method, intarray, bool, integer, CHECK, ERROR
+}