apply chop arguments for calls only

GitOrigin-RevId: 327173f16c882df5d72743d3bee2bb114f069d58
This commit is contained in:
Roman.Ivanov
2019-07-02 06:52:16 +03:00
committed by intellij-monorepo-bot
parent 0751454160
commit 002e7efd27
3 changed files with 24 additions and 1 deletions
@@ -0,0 +1,9 @@
// "Put arguments on separate lines" "false"
class A {
void foo(int a1, int a2, Runnable r) {
foo(1, 2, () -> {
<caret>
})
}
}
@@ -0,0 +1,10 @@
// "Put arguments on separate lines" "false"
class A {
void foo() {
int size = 0;
for (int i = 0; i < size; i++, i++<caret>, i++) {
}
}
}