Formatter: support trailing comma in value arguments
#KT-34744
This commit is contained in:
@@ -30,9 +30,11 @@ val x8 = foo!!!!!!!!.bar()
|
||||
|
||||
val x9 = ((b!!)!!!!)!!.f
|
||||
|
||||
val y = xyzzy(foo.bar()
|
||||
.baz()
|
||||
.quux())
|
||||
val y = xyzzy(
|
||||
foo.bar()
|
||||
.baz()
|
||||
.quux(),
|
||||
)
|
||||
|
||||
fun foo() {
|
||||
foo.bar()
|
||||
|
||||
Reference in New Issue
Block a user