b5dd2cc540
Also changed policy for sorting of smart completion items in basic completion #KT-16800 Fixed #KT-12002 Fixed
11 lines
310 B
Kotlin
Vendored
11 lines
310 B
Kotlin
Vendored
fun foo(paramFirst: Int, paramSecond: Int) = 12
|
|
fun foo(paramThird: String, paramFourth: String) = 1
|
|
|
|
fun test() {
|
|
foo(12, param<caret>)
|
|
}
|
|
|
|
// ABSENT: "paramFirst ="
|
|
// EXIST: {"lookupString":"paramSecond =","tailText":" Int","itemText":"paramSecond ="}
|
|
// ABSENT: "paramThird ="
|
|
// ABSENT: "paramFourth =" |