KT-13810 Kotlin code completion missing last character
#KT-13810 Fixed
This commit is contained in:
@@ -0,0 +1,16 @@
|
||||
// CODE_STYLE_SETTING: ALIGN_MULTILINE_PARAMETERS_IN_CALLS = true
|
||||
package test
|
||||
|
||||
interface Foo {
|
||||
companion object {
|
||||
val EMPTY = object : Foo {}
|
||||
}
|
||||
}
|
||||
|
||||
fun test(foo: Foo, bar: String) {}
|
||||
|
||||
fun test2() {
|
||||
test(<caret>, "")
|
||||
}
|
||||
|
||||
// ELEMENT: EMPTY
|
||||
@@ -0,0 +1,16 @@
|
||||
// CODE_STYLE_SETTING: ALIGN_MULTILINE_PARAMETERS_IN_CALLS = true
|
||||
package test
|
||||
|
||||
interface Foo {
|
||||
companion object {
|
||||
val EMPTY = object : Foo {}
|
||||
}
|
||||
}
|
||||
|
||||
fun test(foo: Foo, bar: String) {}
|
||||
|
||||
fun test2() {
|
||||
test(Foo.EMPTY<caret>, "")
|
||||
}
|
||||
|
||||
// ELEMENT: EMPTY
|
||||
Reference in New Issue
Block a user