forked from JavaTX/JavaCompilerCore
Add public
This commit is contained in:
parent
c3343959c5
commit
2ded0c9044
@ -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;
|
||||
}
|
||||
}
|
@ -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);
|
||||
}
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user