petit readme

This commit is contained in:
Rochas
2025-04-30 18:52:33 +02:00
parent d6301bad2d
commit 18beb717b2
41 changed files with 28 additions and 14 deletions

View File

@@ -1,6 +1,7 @@
package TP2.asd;
import java.util.ArrayList;
import TP2.asd.Interface.*;
import TP2.llvm.ProgramLLVM.*;
@@ -17,7 +18,11 @@ public class Program{
return this.accept(ppVisitor, "");
}
@Override
//public TypeCheckExprDiag typeChecking(){
// TypeChecking tcVisitor = new TypeChecking();
// return this.accept(tcVisitor, new SymTable());
//}
public ProgramLLVMImp toLLVM() {
toLLVM_Visitor llvmVisitor = new toLLVM_Visitor();
return this.accept(llvmVisitor,new SymTable());