fix SuperStatementExpression

This commit is contained in:
StefanZ3 2024-06-18 11:49:25 +02:00
parent cdc81f705a
commit 666931fa44

View File

@ -5,6 +5,6 @@ import java.util.List;
public class SuperStatementExpression extends MethodCallStatementExpression{
public SuperStatementExpression(String methodName, List<IExpression> arguments, List<ReceivingMethod> receivingMethods, Receiver receiver) {
super(methodName, arguments, receivingMethods, receiver);
super(methodName, receiver, receivingMethods, arguments);
}
}