Added test for inheritor renamer (Kotlin subclasses of Java class).
This commit is contained in:
@@ -0,0 +1,3 @@
|
||||
class Bar {
|
||||
|
||||
}
|
||||
@@ -0,0 +1,3 @@
|
||||
class BarImpl : Bar()
|
||||
|
||||
object BarObj : Bar()
|
||||
@@ -0,0 +1,3 @@
|
||||
class Foo {
|
||||
|
||||
}
|
||||
@@ -0,0 +1,3 @@
|
||||
class FooImpl : Foo()
|
||||
|
||||
object FooObj : Foo()
|
||||
@@ -0,0 +1,7 @@
|
||||
{
|
||||
"type": "JAVA_CLASS",
|
||||
"classId": "/Foo",
|
||||
"oldName": "Foo",
|
||||
"newName": "Bar",
|
||||
"mainFile": "Foo.java"
|
||||
}
|
||||
Reference in New Issue
Block a user