KT-1633 support completion of named function parameters
This commit is contained in:
@@ -0,0 +1,11 @@
|
||||
fun foo(paramFirst: String, paramSecond: String, paramThird: String, paramFourth: String) {}
|
||||
|
||||
fun test() {
|
||||
foo("str", paramThird = "test", param<caret>)
|
||||
}
|
||||
|
||||
// ABSENT: paramFirst
|
||||
// EXIST: paramSecond
|
||||
// ABSENT: paramThird
|
||||
// EXIST: paramFourth
|
||||
|
||||
Reference in New Issue
Block a user