Added "kotlin.reflect.jvm.internal" to excluded from completion and auto imports list

This commit is contained in:
Simon Ogorodnik
2017-01-25 17:45:59 +03:00
parent e220a20eed
commit 32f1ce7551
@@ -25,7 +25,8 @@ import org.jetbrains.kotlin.idea.imports.importableFqName
private val exclusions =
listOf(
"kotlin.jvm.internal",
"kotlin.coroutines.intrinsics"
"kotlin.coroutines.intrinsics",
"kotlin.reflect.jvm.internal"
)
private fun shouldBeHiddenAsInternalImplementationDetail(fqName: String) = exclusions.any { fqName.startsWith(it) }