Test for KT-365 Support renaming packages

#KT-365 Obsolete
This commit is contained in:
Nikolay Krasko
2014-02-03 14:56:40 +04:00
parent 9a349374ee
commit 62e8883138
10 changed files with 77 additions and 0 deletions
@@ -0,0 +1,3 @@
package some.bar.other
class Test
@@ -0,0 +1,3 @@
package some.bar.other
fun testFunction() {}
@@ -0,0 +1,8 @@
package some.bar.more
import some.bar.other.Test
fun test() {
some.bar.more.test()
some.bar.other.testFunction()
}
@@ -0,0 +1,3 @@
package some.foo.other
class Test
@@ -0,0 +1,3 @@
package some.foo.other
fun testFunction() {}
@@ -0,0 +1,8 @@
package some.foo.more
import some.foo.other.Test
fun test() {
some.foo.more.test()
some.foo.other.testFunction()
}
@@ -0,0 +1,7 @@
{
"type": "KOTLIN_PACKAGE",
"fqn": "some.foo",
"newName": "bar",
"mainFile": "ForClassImport.kt",
"comment": "KT-365 Support renaming packages"
}
@@ -0,0 +1,6 @@
{
"type": "KOTLIN_PACKAGE",
"fqn": "some.foo",
"newName": "bar",
"comment": "KT-365 Support renaming packages"
}