KT-8208: Support static members completion when receiver not-imported
#KT-8208 fixed
This commit is contained in:
+15
@@ -0,0 +1,15 @@
|
||||
package foo
|
||||
|
||||
class Bar {
|
||||
companion object {
|
||||
fun bfun() {}
|
||||
val bval = 99
|
||||
const val bconst = 100
|
||||
}
|
||||
|
||||
class FooBar {
|
||||
|
||||
}
|
||||
}
|
||||
|
||||
// ALLOW_AST_ACCESS
|
||||
+15
@@ -0,0 +1,15 @@
|
||||
package bar
|
||||
|
||||
fun buz() {
|
||||
Bar.<caret>
|
||||
}
|
||||
|
||||
// EXIST: bconst
|
||||
// EXIST: bval
|
||||
// EXIST: Companion
|
||||
// EXIST: FooBar
|
||||
// EXIST: bfun
|
||||
// EXIST: toString
|
||||
// EXIST: hashCode
|
||||
// EXIST: equals
|
||||
// NOTHING_ELSE
|
||||
Reference in New Issue
Block a user