From 61a28b7f8e709d1884ccab15f0dc38ed19dfde70 Mon Sep 17 00:00:00 2001 From: bd-912 Date: Tue, 9 Apr 2024 23:48:26 -0600 Subject: Partial arguments in Vaporize.MessageSend, Typecheck for milestone --- st/SymbolTable.java | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'st/SymbolTable.java') 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 symt; // the mapping of ids to Instances - private HashMap active; // the current scope of the visitor (class, method) + private HashMap symt; // the mapping of ids to Instances + private HashMap active; // the current scope of the visitor (class, method) public SymbolTable() { this.symt = new HashMap<>(); -- cgit v1.2.3