diff --git a/idea/src/org/jetbrains/kotlin/idea/findUsages/KotlinElementDescriptionProvider.kt b/idea/src/org/jetbrains/kotlin/idea/findUsages/KotlinElementDescriptionProvider.kt index fac545f36d1..2e09a10acb8 100644 --- a/idea/src/org/jetbrains/kotlin/idea/findUsages/KotlinElementDescriptionProvider.kt +++ b/idea/src/org/jetbrains/kotlin/idea/findUsages/KotlinElementDescriptionProvider.kt @@ -59,6 +59,7 @@ class KotlinElementDescriptionProvider : ElementDescriptionProvider { is KtTypeParameter -> "type parameter" is KtParameter -> "parameter" is KtDestructuringDeclarationEntry -> "variable" + is KtTypeAlias -> "type alias" is RenameJavaSyntheticPropertyHandler.SyntheticPropertyWrapper -> "property" is KtLightClassForFacade -> "facade class" is RenameKotlinPropertyProcessor.PropertyMethodWrapper -> "property accessor"