This commit is contained in:
trochas
2025-04-25 15:05:38 +02:00
3 changed files with 7 additions and 8 deletions

View File

@@ -42,7 +42,6 @@ public class PrettyprinterVisitor implements ProgramVisitor<String,String>,
str+=", ";
}
}
return str+")";
}

View File

@@ -11,7 +11,7 @@ public interface Interface {
public interface ProgramLLVMVisitor<H,S> {
public S visitProgramLLVM(ProgramLLVMImpl prog, H h);
}
//////////DefineLLVM (function)
public interface DefineLLVM{
public <H,S> S accept(DefineLLVMVisitor<H,S> v, H h);