diff options
Diffstat (limited to 'Typecheck.java')
-rw-r--r-- | Typecheck.java | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/Typecheck.java b/Typecheck.java index 3115c31..23f2efc 100644 --- a/Typecheck.java +++ b/Typecheck.java @@ -19,8 +19,8 @@ public class Typecheck { root.accept(pp, ""); PrintFilter.print("===================================================", true); - // // Build the symbol table. Top-down visitor, inherits from - // // GJDepthFirst<R,A>. R=Void, A=Integer. + // Build the symbol table. Top-down visitor, inherits from + // GJDepthFirst<R,A>. R=Void, A=Integer. SymTableVis pv = new SymTableVis(); root.accept(pv, new ArrayList<TypeInstance>()); HashMap<String, AbstractInstance> symt = pv.symt; |