Show delegated methods when "Show inherited" enabled in file structure view

This commit is contained in:
Nikolay Krasko
2014-05-28 21:59:59 +04:00
parent 582c5874b7
commit be6d68741b
5 changed files with 33 additions and 4 deletions
@@ -0,0 +1,9 @@
trait Some {
fun first()
fun second()
}
class ClassSome: Some {
override fun first() {}
override fun second() {}
}
@@ -0,0 +1,7 @@
-InheritedDelegationMethods.kt
-Test
equals(Any?): Boolean location=→Any
first(): Unit location=→Some
hashCode(): Int location=→Any
second(): Unit location=→Some
toString(): String location=→Any
@@ -0,0 +1,3 @@
class Test: Some by ClassSome()
// WITH_INHERITED