Formatter: support trailing comma in value parameters

#KT-34744
This commit is contained in:
Dmitry Gridin
2019-12-18 21:01:08 +07:00
parent 463728a96a
commit 13ae4a28a8
51 changed files with 1644 additions and 70 deletions
+4 -2
View File
@@ -28,8 +28,10 @@ fun test() {
test(fun test() = 4)
}
fun d = fun(a: Int,
b: String) {
fun d = fun(
a: Int,
b: String,
) {
}
fun e = fun() {