Override accept(...) in KtConstructorDelegationCall

This commit is contained in:
Dmitry Petrov
2017-11-01 14:15:06 +03:00
parent ac761a03c5
commit 6648657e65
@@ -30,6 +30,11 @@ public class KtConstructorDelegationCall extends KtElementImpl implements KtCall
super(node);
}
@Override
public <R, D> R accept(@NotNull KtVisitor<R, D> visitor, D data) {
return visitor.visitConstructorDelegationCall(this, data);
}
@Override
@Nullable
public KtValueArgumentList getValueArgumentList() {