From 6648657e65f321d693d3534f297d21d04a87cda6 Mon Sep 17 00:00:00 2001 From: Dmitry Petrov Date: Wed, 1 Nov 2017 14:15:06 +0300 Subject: [PATCH] Override accept(...) in KtConstructorDelegationCall --- .../jetbrains/kotlin/psi/KtConstructorDelegationCall.java | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/compiler/frontend/src/org/jetbrains/kotlin/psi/KtConstructorDelegationCall.java b/compiler/frontend/src/org/jetbrains/kotlin/psi/KtConstructorDelegationCall.java index 75b5789c436..6f4f29b1d8f 100644 --- a/compiler/frontend/src/org/jetbrains/kotlin/psi/KtConstructorDelegationCall.java +++ b/compiler/frontend/src/org/jetbrains/kotlin/psi/KtConstructorDelegationCall.java @@ -30,6 +30,11 @@ public class KtConstructorDelegationCall extends KtElementImpl implements KtCall super(node); } + @Override + public R accept(@NotNull KtVisitor visitor, D data) { + return visitor.visitConstructorDelegationCall(this, data); + } + @Override @Nullable public KtValueArgumentList getValueArgumentList() {