Competion in debugger for runtime receiver type should not show members grayed

This commit is contained in:
Valentin Kipyatkov
2015-10-28 21:49:21 +03:00
parent af441d32b1
commit 4ab2019da4
27 changed files with 168 additions and 92 deletions
@@ -48,9 +48,7 @@ public abstract class AbstractAndroidCompletionTest : KotlinAndroidTestCase() {
val virtualFile = myFixture.copyFileToProject(path + getTestName(true) + ".kt", "src/" + getTestName(true) + ".kt");
myFixture.configureFromExistingVirtualFile(virtualFile)
val fileText = FileUtil.loadFile(File(path + getTestName(true) + ".kt"), true)
testCompletion(fileText, JvmPlatform, {
count -> myFixture.complete(completionType())
})
testCompletion(fileText, JvmPlatform, { completionType, count -> myFixture.complete(completionType, count) })
}