tests: apply official code style

#KT-38632 Fixed
This commit is contained in:
Dmitry Gridin
2020-04-28 15:51:57 +07:00
parent d8f9643650
commit 11a3482970
406 changed files with 1785 additions and 1525 deletions
@@ -9,7 +9,8 @@ interface X {
fun foo(x: X) {
x.newFun(
1,
2,
0)
1,
2,
0
)
}
@@ -8,8 +8,8 @@ fun Int.newFun(): Int = this
fun foo(list: List<String>): Int {
return list
.filter { it.isNotEmpty() }
.map { it.length }
.first()
.<caret>newFun()
.filter { it.isNotEmpty() }
.map { it.length }
.first()
.<caret>newFun()
}
@@ -8,7 +8,9 @@ interface X {
}
fun foo(x: X) {
x.<caret>newFun(1,
2,
3)
x.<caret>newFun(
1,
2,
3
)
}