Ordering of static members in completion

This commit is contained in:
Valentin Kipyatkov
2015-11-03 12:29:25 +03:00
parent 3bd508ca84
commit 7198b897ab
13 changed files with 77 additions and 9 deletions
@@ -0,0 +1,19 @@
package p6
import p5.O1.xxx_fun2FromP5O1
import p4.O1
import p3.*
import p2.O1
fun foo() {
xxx_<caret>
}
// INVOCATION_COUNT: 2
// ORDER: xxx_fun2FromP5O1
// ORDER: xxx_fun1FromP5O1
// ORDER: xxx_fun1FromP6O1
// ORDER: xxx_fun1FromP4O1
// ORDER: xxx_fun1FromP3O1
// ORDER: xxx_fun1FromP2O2
// ORDER: xxx_fun1FromP1O1