correction bug addLLVM avec des val

This commit is contained in:
Rochas
2025-04-05 10:48:27 +02:00
parent 7dfb07d59f
commit 56df584b9f
6 changed files with 48 additions and 21 deletions

View File

@@ -51,6 +51,10 @@ public interface Interface{
public ArrayList<AssignLVMImp> toLLVM();
}
public interface Val extends Expression{
public ValLLVM getValLLVM();
}
public interface ExprVisitor<H,S> {
public S visitConst(ConstImp e,H h);
public S visitBinOp(BinopExpressionImp e, H h);