Formatter: support trailing comma in value arguments

#KT-34744
This commit is contained in:
Dmitry Gridin
2019-12-25 18:31:30 +07:00
parent 13ae4a28a8
commit c195cd46f2
70 changed files with 9829 additions and 1575 deletions
+4 -2
View File
@@ -13,8 +13,10 @@ val c = fun() = 4
fun test() = fun test() = 4
fun test() {
test(fun() {
})
test(
fun() {
},
)
test(fun test() {})
test(fun test() = 5)