todo toLLVM

This commit is contained in:
trochas
2025-04-04 18:18:12 +02:00
parent 651bd9f7bb
commit 59ba13fe18
3 changed files with 16 additions and 3 deletions

View File

@@ -45,6 +45,7 @@ public interface Interface{
public interface Expression {
public <H,S> S accept(ExprVisitor<H,S> v, H h);
public String prettyprinter();
public DefineLLVM toLLVM();
}
public interface ExprVisitor<H,S> {