Test for KT-365 Support renaming packages
#KT-365 Obsolete
This commit is contained in:
@@ -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"
|
||||
}
|
||||
Reference in New Issue
Block a user