add new version of javatx compiler

This commit is contained in:
Julian 2024-02-08 13:04:34 +01:00
parent abbd9cdcd9
commit 2309bf4511
2 changed files with 2 additions and 1 deletions

Binary file not shown.

View File

@ -26,7 +26,8 @@ import java.lang.Boolean;
public class FunNClass extends ClassOrInterface { public class FunNClass extends ClassOrInterface {
public FunNClass(List<GenericRefType> funNParams) { public FunNClass(List<GenericRefType> funNParams) {
JavaClassName a = new JavaClassName("Fun" + (funNParams.size() - 1)); String a_param = "Fun" + (funNParams.size() - 1);
JavaClassName a = new JavaClassName(a_param);
super(0, a, new ArrayList<>(), Optional.empty(), Optional.empty() /* eingefuegt PL 2018-11-24 */, createMethods(funNParams), new ArrayList<>(), createGenerics(funNParams), ASTFactory.createObjectType(), true, false, new ArrayList<>(), new ArrayList<>(), new NullToken()); super(0, a, new ArrayList<>(), Optional.empty(), Optional.empty() /* eingefuegt PL 2018-11-24 */, createMethods(funNParams), new ArrayList<>(), createGenerics(funNParams), ASTFactory.createObjectType(), true, false, new ArrayList<>(), new ArrayList<>(), new NullToken());
} }