[Analysis API FE10] fix candidate creation for KtSuperTypeCallEntry

This commit is contained in:
Ilya Kirillov
2022-07-20 19:29:05 +02:00
parent a0f0fa5a47
commit e4d00eea0f
@@ -448,6 +448,11 @@ internal class KtFe10CallResolver(
if (callElement.isCallToThis) KtDelegatedConstructorCall.Kind.THIS_CALL else KtDelegatedConstructorCall.Kind.SUPER_CALL,
argumentMapping
)
is KtSuperTypeCallEntry -> return KtDelegatedConstructorCall(
partiallyAppliedConstructorSymbol,
KtDelegatedConstructorCall.Kind.SUPER_CALL,
argumentMapping
)
}
}
@Suppress("UNCHECKED_CAST")