diff options
Diffstat (limited to 'J2V.java')
-rw-r--r-- | J2V.java | 3 |
1 files changed, 2 insertions, 1 deletions
@@ -25,7 +25,8 @@ public class J2V { root.accept(new SymTableTopDown<Void>(), symt); BoilSimp vp = new BoilSimp(); - root.accept(vp, symt); + vp.setSymbolTable(symt); + root.accept(vp, ""); PrintFilter.print("===================================================", true); System.out.println(vp.getVapor()); |