Implement "move class-level declaration up/down" action handler

This commit is contained in:
Alexey Sedunov
2013-05-29 13:11:46 +04:00
parent 3a2e30152a
commit fe8891299b
136 changed files with 1900 additions and 0 deletions

View File

@@ -0,0 +1,9 @@
// MOVE: down
class A {
<caret>fun foo() {
}
fun foo() {
}
}