From afe1a492795d23313a0c1404acb0d86530b7a173 Mon Sep 17 00:00:00 2001 From: trochas Date: Mon, 7 Apr 2025 17:39:43 +0200 Subject: [PATCH] clean todo Load --- src/main/java/TP2/asd/Program.java | 10 +--------- 1 file changed, 1 insertion(+), 9 deletions(-) diff --git a/src/main/java/TP2/asd/Program.java b/src/main/java/TP2/asd/Program.java index 1e4f0cb..f1941a2 100644 --- a/src/main/java/TP2/asd/Program.java +++ b/src/main/java/TP2/asd/Program.java @@ -13,22 +13,14 @@ public class Program{ public String prettyprinter(){ PrettyprinterVisitor ppVisitor = new PrettyprinterVisitor(); - return this.accept(ppVisitor, ""); - + return this.accept(ppVisitor, ""); } @Override public ProgramLLVMImpl toLLVM() { - /**ArrayList fonctionLLVM = new ArrayList<>(); - for(int i = 0; i(),fonctionLLVM);*/ toLLVM_Visitor llvmVisitor = new toLLVM_Visitor(); return this.accept(llvmVisitor,new SymTable()); } - - }