Move: Do not shorten references unaffected by the refactoring

This commit is contained in:
Alexey Sedunov
2017-03-22 16:08:19 +03:00
parent aad11ff0f4
commit dc04b200b6
11 changed files with 61 additions and 9 deletions
@@ -0,0 +1,6 @@
package source
class Foo {
}
@@ -0,0 +1,5 @@
package target
fun foo() {
val util: util.Util = util.Util()
}
@@ -0,0 +1,9 @@
package source
class Foo {
}
fun <caret>foo() {
val util: util.Util = util.Util()
}
@@ -0,0 +1,5 @@
{
"mainFile": "source/Foo.kt",
"type": "MOVE_KOTLIN_TOP_LEVEL_DECLARATIONS",
"targetPackage": "target"
}