Move statement: do not move when function last parameter is on same line as right parenthesis

#KT-14757 Fixed
This commit is contained in:
Toshiaki Kameyama
2019-08-04 02:19:36 +09:00
committed by klunnii
parent 615636ed55
commit 1d39ac1d3e
4 changed files with 40 additions and 6 deletions
@@ -0,0 +1,6 @@
// MOVE: down
// IS_APPLICABLE: false
fun test(
<caret>x: String,
y: Int) {
}
@@ -0,0 +1,6 @@
// MOVE: up
// IS_APPLICABLE: false
fun test(
x: String,
<caret>y: Int) {
}