Move/Change Package: Package name validation

#EA-70631 Fixed
This commit is contained in:
Alexey Sedunov
2015-08-19 15:26:38 +03:00
parent df935f5bb7
commit b2eb53e4b2
11 changed files with 97 additions and 18 deletions
@@ -0,0 +1,5 @@
package p
fun foo() {
}
@@ -0,0 +1,7 @@
package q
import p.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"
}