Supported Kotlin usages of Java class in automatic variable renamer.

This commit is contained in:
Evgeny Gerashchenko
2015-04-21 19:30:11 +03:00
parent a9f9ca4ccb
commit 9a4fbd35bd
3 changed files with 21 additions and 10 deletions
@@ -1,3 +1,6 @@
class BarImpl : Bar()
object BarObj : Bar()
object BarObj : Bar()
val bar: Bar = Bar()
val bars: Array<Bar> = throw Error()
@@ -1,3 +1,6 @@
class FooImpl : Foo()
object FooObj : Foo()
object FooObj : Foo()
val foo: Foo = Foo()
val foos: Array<Foo> = throw Error()