Completion: fixed ordering for packages + exclude for package items supported too

This commit is contained in:
Valentin Kipyatkov
2015-07-16 17:58:52 +03:00
parent ace38ac57f
commit e05c20b5c0
6 changed files with 49 additions and 16 deletions
@@ -0,0 +1,5 @@
package my.koza
class K
fun kokoFun(){}
@@ -0,0 +1,3 @@
package kotlin
class K1
@@ -0,0 +1,10 @@
import my.koza
class A {
val v = ko<caret>
}
// INVOCATION_COUNT: 2
// ORDER: kokoFun
// ORDER: koza
// ORDER: kotlin