diff options
author | bd-912 <bdunahu@colostate.edu> | 2024-03-25 16:58:51 -0600 |
---|---|---|
committer | bd-912 <bdunahu@colostate.edu> | 2024-03-25 16:58:51 -0600 |
commit | e8af241aa57104d62c25c8bcbc2df76510998bf9 (patch) | |
tree | 65e9ad1b9954666488d4228aeaf0458fd15f1d7e /Typecheck.java | |
parent | b16ddfd5d0bc48b66123352827979e242fcd6bfc (diff) |
All tests run, basic rules implemented
Diffstat (limited to 'Typecheck.java')
-rw-r--r-- | Typecheck.java | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/Typecheck.java b/Typecheck.java index 548bf3e..31fa506 100644 --- a/Typecheck.java +++ b/Typecheck.java @@ -24,6 +24,7 @@ public class Typecheck { new SymTableVis<Void,Integer>(); root.accept(pv, 0); HashMap<String, TypeInstance> symt = pv.symt; + Utilities.print_filter("===================================================", true); // Do type checking. Bottom-up visitor, also inherits from // GJDepthFirst. Visit functions return MyTpe (=R), and |