Option to wrap elvis expressions

#KT-21720 Fixed
This commit is contained in:
Dmitry Jemerov
2017-12-08 15:31:27 +01:00
parent d1daca2560
commit eacd010e7e
10 changed files with 49 additions and 16 deletions
+3 -3
View File
@@ -9,9 +9,9 @@ fun test(a: Int?) {
a
?: 42
val some = a ?:
b ?:
12
val some = a
?: b
?: 12
}
// SET_TRUE: ALIGN_MULTILINE_BINARY_OPERATION