Move: Support quoted package names

#KT-12411 Fixed
(cherry picked from commit 95239e5)
This commit is contained in:
Alexey Sedunov
2016-06-21 20:57:11 +03:00
parent 89816c5f12
commit 542f8d9fd2
48 changed files with 290 additions and 28 deletions
@@ -0,0 +1,5 @@
package p.`123`
fun foo() {
}
@@ -0,0 +1,7 @@
package q
import p.`123`.foo
fun bar() {
foo()
}
@@ -0,0 +1,5 @@
package p
fun foo() {
}
@@ -0,0 +1,7 @@
package q
import p.foo
fun bar() {
foo()
}
@@ -0,0 +1,5 @@
{
"mainFile": "p/main.kt",
"type": "MOVE_FILES",
"targetPackage": "p.123"
}