Add public
Some checks failed
Build and Test with Maven / Build-and-test-with-Maven (push) Failing after 6m27s

This commit is contained in:
Daniel Holle 2024-05-15 16:46:15 +02:00
parent c3343959c5
commit 2ded0c9044
2 changed files with 4 additions and 3 deletions

View File

@ -1,9 +1,9 @@
class Box<A> {
public class Box<A> {
A a;
Box() { }
Box(A a) {
public Box() { }
public Box(A a) {
//this.a = a;
}
}

View File

@ -228,6 +228,7 @@ public class StatementToTargetExpression implements ASTVisitor {
isInterface = receiverClass.isInterface();
}
System.out.println(argList);
result = new TargetMethodCall(converter.convert(methodCall.getType()), returnType, argList, converter.convert(methodCall.receiver), methodCall.getArgumentList().getArguments().stream().map(converter::convert).toList(), receiverType, methodCall.name, isStatic, isInterface, isPrivate);
}