summaryrefslogtreecommitdiff
path: root/J2V.java
diff options
context:
space:
mode:
Diffstat (limited to 'J2V.java')
-rw-r--r--J2V.java3
1 files changed, 2 insertions, 1 deletions
diff --git a/J2V.java b/J2V.java
index 2380f4e..5a16dad 100644
--- a/J2V.java
+++ b/J2V.java
@@ -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());