Implement "move expression up/down" action handler

This commit is contained in:
Alexey Sedunov
2013-05-23 20:25:52 +04:00
parent fe8891299b
commit b00ec82884
61 changed files with 1272 additions and 3 deletions
@@ -0,0 +1,11 @@
// MOVE: down
fun foo(n: Int) {
if (n > 0) {
} else {
}<caret>
while (n > 0) {
}
}
@@ -0,0 +1,11 @@
// MOVE: down
fun foo(n: Int) {
if (n > 0) {
} else {
while (n > 0) {
}
}<caret>
}
@@ -0,0 +1,12 @@
// MOVE: down
// IS_APPLICABLE: false
fun foo(n: Int) {
if (n > 0) {
} else {
}
while (n > 0) {
}<caret>
}