KT-13810 Kotlin code completion missing last character

#KT-13810 Fixed
This commit is contained in:
Valentin Kipyatkov
2016-10-13 21:00:01 +03:00
parent d48ef2efc7
commit 7ab2d0c951
5 changed files with 53 additions and 5 deletions
+16
View File
@@ -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