summaryrefslogtreecommitdiff
path: root/typecheck
diff options
context:
space:
mode:
authorbd-912 <bdunahu@colostate.edu>2024-03-31 23:04:35 -0600
committerbd-912 <bdunahu@colostate.edu>2024-03-31 23:04:35 -0600
commit23b6f865aad683d7f3590c46aa4b74f0a030f6af (patch)
treed1ce3e147b0ced8c47c248df2405588501b0dea8 /typecheck
parent835e614e1e2531db3dc7dbe027de122a9fa0b78f (diff)
Added argument+parameter storing for methods to SymbolTable
Diffstat (limited to 'typecheck')
-rw-r--r--typecheck/library/TypeCheckSimp.java2
1 files changed, 1 insertions, 1 deletions
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<TypeInstance,HashMap<String,AbstractInstance>> {
+public class TypeCheckSimp extends GJDepthFirst<TypeInstance,HashMap<String,AbstractInstance>> {
private int offset;