Supported excluded packages/classes in completion.

#KT-2413 in progress
This commit is contained in:
Evgeny Gerashchenko
2015-07-06 23:27:46 +03:00
parent 5c56bc455e
commit 0451debda4
19 changed files with 116 additions and 10 deletions
@@ -0,0 +1,6 @@
package excludedPackage
fun someFunction(): Int {
}
val someProperty: Int = 5
@@ -0,0 +1,6 @@
package notExcludedPackage
fun someOtherFunction(): Int {
}
val someOtherProperty: Int = 5
@@ -0,0 +1,6 @@
val x: Int = some<caret>
// INVOCATION_COUNT: 2
// NUMBER: 2
// ABSENT: someFunction, someProperty
// EXIST: someOtherFunction, someOtherProperty