From 23b6f865aad683d7f3590c46aa4b74f0a030f6af Mon Sep 17 00:00:00 2001 From: bd-912 Date: Sun, 31 Mar 2024 23:04:35 -0600 Subject: Added argument+parameter storing for methods to SymbolTable --- typecheck/library/TypeCheckSimp.java | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'typecheck/library/TypeCheckSimp.java') diff --git a/typecheck/library/TypeCheckSimp.java b/typecheck/library/TypeCheckSimp.java index 3d262fd..59ee69b 100644 --- a/typecheck/library/TypeCheckSimp.java +++ b/typecheck/library/TypeCheckSimp.java @@ -10,7 +10,7 @@ import java.util.*; * Provides default methods which visit each node in the tree in depth-first * order. Your visitors may extend this class. */ -public class TypeCheckSimp implements GJVisitor> { +public class TypeCheckSimp extends GJDepthFirst> { private int offset; -- cgit v1.2.3