Spring Support: Support Find Usages/Rename (on both declarations and
references) of Kotlin declarations referenced in the XML config #KT-11719 Fixed #KT-11652 Fixed
This commit is contained in:
+2
-2
@@ -224,8 +224,8 @@ class KotlinReferencesSearcher : QueryExecutorBase<PsiReference, ReferencesSearc
|
||||
}
|
||||
|
||||
private fun searchPropertyMethods(queryParameters: ReferencesSearch.SearchParameters, parameter: KtParameter) {
|
||||
val propertyMethods = runReadAction { LightClassUtil.getLightClassPropertyMethods(parameter) }
|
||||
propertyMethods.allDeclarations.forEach { searchNamedElement(queryParameters, it) }
|
||||
val lightElements = runReadAction { parameter.toLightElements() }
|
||||
lightElements.forEach { searchNamedElement(queryParameters, it) }
|
||||
}
|
||||
|
||||
private fun searchDataClassComponentUsages(queryParameters: ReferencesSearch.SearchParameters,
|
||||
|
||||
Reference in New Issue
Block a user