Restrict index search to declarations visible from Java

Fix KotlinStdLibInJavaCompletionTestGenerated.testList
Regression after KotlinShortNamesCache rewrite.
This commit is contained in:
Nikolay Krasko
2018-11-23 01:57:14 +03:00
parent b79f8ff8fa
commit d2b0ccd341
@@ -93,7 +93,7 @@ class KotlinShortNamesCache(private val project: Project) : PsiShortNamesCacheWr
KotlinClassShortNameIndex.getInstance().key,
name,
project,
scope,
effectiveScope,
filter,
KtClassOrObject::class.java
) { ktClassOrObject ->
@@ -107,7 +107,7 @@ class KotlinShortNamesCache(private val project: Project) : PsiShortNamesCacheWr
KotlinFileFacadeShortNameIndex.getInstance().key,
name,
project,
scope,
effectiveScope,
filter,
KtFile::class.java
) { ktFile ->