Property types supported in smart completion without "::"
This commit is contained in:
+16
@@ -0,0 +1,16 @@
|
||||
import kotlin.reflect.KProperty
|
||||
|
||||
fun foo(property: KProperty<Int>) {
|
||||
}
|
||||
|
||||
fun bar() {
|
||||
foo(<caret>)
|
||||
}
|
||||
|
||||
val vInt = 0
|
||||
val vString = ""
|
||||
fun fInt() = 0
|
||||
|
||||
// EXIST: { lookupString: "::vInt", itemText: "::vInt", tailText: " (<root>)", typeText: "Int" }
|
||||
// ABSENT: ::vString
|
||||
// ABSENT: ::fInt
|
||||
Reference in New Issue
Block a user