[FIR IDE] Fix resolve value parameter symbol
This commit is contained in:
+1
-1
@@ -39,7 +39,7 @@ internal class FirLazyDeclarationResolver(
|
|||||||
) {
|
) {
|
||||||
if (declaration.resolvePhase >= toPhase) return
|
if (declaration.resolvePhase >= toPhase) return
|
||||||
|
|
||||||
if (declaration is FirPropertyAccessor || declaration is FirTypeParameter) {
|
if (declaration is FirPropertyAccessor || declaration is FirTypeParameter || declaration is FirValueParameter) {
|
||||||
val ktContainingResolvableDeclaration = when (val ktDeclaration = declaration.ktDeclaration) {
|
val ktContainingResolvableDeclaration = when (val ktDeclaration = declaration.ktDeclaration) {
|
||||||
is KtPropertyAccessor -> ktDeclaration.property
|
is KtPropertyAccessor -> ktDeclaration.property
|
||||||
is KtProperty -> ktDeclaration
|
is KtProperty -> ktDeclaration
|
||||||
|
|||||||
Reference in New Issue
Block a user