Show delegated methods when "Show inherited" enabled in file structure view
This commit is contained in:
@@ -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
|
||||
Reference in New Issue
Block a user