91c021c699
Don't display parameter info in square brackets if the caller doesn't have to use a named argument. This makes the parameter info popup reflect the new capability introduced with MixedNamedArgumentsInTheirOwnPosition. ^KT-41645 Fixed
12 lines
374 B
Kotlin
Vendored
12 lines
374 B
Kotlin
Vendored
open class A(x: Int) {
|
|
fun m(x: Boolean, y: Int) = 1
|
|
fun m(x: Boolean, y: Int, z: Int) = 2
|
|
|
|
fun d(x: Int) {
|
|
m(false, y = 23<caret>)
|
|
}
|
|
}
|
|
/*
|
|
Text: (x: Boolean, <highlight>[y: Int]</highlight>), Disabled: false, Strikeout: false, Green: true
|
|
Text: (x: Boolean, <highlight>[y: Int]</highlight>, z: Int), Disabled: false, Strikeout: false, Green: false
|
|
*/ |