diff options
author | bd-912 <bdunahu@colostate.edu> | 2024-04-10 23:40:25 -0600 |
---|---|---|
committer | bd-912 <bdunahu@colostate.edu> | 2024-04-10 23:40:25 -0600 |
commit | 1080b37bbe40fe56b919d22804c159cccdca3c95 (patch) | |
tree | 8ddbb9528f575e537f925b266c8f366be6acc8b7 /J2V.java | |
parent | 61a28b7f8e709d1884ccab15f0dc38ed19dfde70 (diff) |
Library rename, created A4 directories
Diffstat (limited to 'J2V.java')
-rw-r--r-- | J2V.java | 4 |
1 files changed, 2 insertions, 2 deletions
@@ -5,7 +5,7 @@ import syntaxtree.*; import java.util.*; import st.*; import misc.*; -import vaporize.library.*; +import boil.library.*; public class J2V { public static void main(String[] args) { @@ -24,7 +24,7 @@ public class J2V { root.accept(new SymTableBottomUp<Void>(), symt); root.accept(new SymTableTopDown<Void>(), symt); - VaporizeSimp vp = new VaporizeSimp(); + BoilSimp vp = new BoilSimp(); String program = root.accept(vp, symt); PrintFilter.print("===================================================", true); |