summaryrefslogtreecommitdiff
path: root/st/SymbolTable.java
diff options
context:
space:
mode:
authorbd-912 <bdunahu@colostate.edu>2024-04-09 23:48:26 -0600
committerbd-912 <bdunahu@colostate.edu>2024-04-09 23:48:26 -0600
commit61a28b7f8e709d1884ccab15f0dc38ed19dfde70 (patch)
tree4a08bf487d7a18cc8cd328876067e57d261920f6 /st/SymbolTable.java
parentc1e124b957fa840f7bd8da9ffc6871140cfabf16 (diff)
Partial arguments in Vaporize.MessageSend, Typecheck for milestone
Diffstat (limited to 'st/SymbolTable.java')
-rw-r--r--st/SymbolTable.java4
1 files changed, 2 insertions, 2 deletions
diff --git a/st/SymbolTable.java b/st/SymbolTable.java
index 1c0af09..93d3af9 100644
--- a/st/SymbolTable.java
+++ b/st/SymbolTable.java
@@ -8,8 +8,8 @@ import java.util.*;
* of each symbol consistent.
*/
public class SymbolTable {
- private HashMap<String,AbstractInstance> symt; // the mapping of ids to Instances
- private HashMap<TypeEnum,String> active; // the current scope of the visitor (class, method)
+ private HashMap<String,AbstractInstance> symt; // the mapping of ids to Instances
+ private HashMap<TypeEnum,String> active; // the current scope of the visitor (class, method)
public SymbolTable() {
this.symt = new HashMap<>();