Preserve formatting of parenthesis in calls too
This commit is contained in:
@@ -5,6 +5,7 @@ class F {
|
||||
void f2(int[] array) {
|
||||
f1(1, 2,
|
||||
3, 4,
|
||||
array);
|
||||
array
|
||||
);
|
||||
}
|
||||
}
|
||||
@@ -5,6 +5,7 @@ internal class F {
|
||||
fun f2(array: IntArray) {
|
||||
f1(1, 2,
|
||||
3, 4,
|
||||
*array)
|
||||
*array
|
||||
)
|
||||
}
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user