Julia Solonar
01/08/2021, 1:22 PMDClass
the list of child classes `DRI`(List of classes which extended current class)? And for DFunction
get the method DRI
, which was override by current method.
So If I have class :
class Fruit{
fun grow()
}
class Apple: Fruit{
override fun grow()
}
So, from DClass
of Fruit
I want to get info, that it was extended by Apple
.
And from DFunction
of Apple.grow()
that it overrode Fruit.grow()
.Marcin Aman
01/08/2021, 1:28 PMInheritorsInfo
extra.
The information about the function that is overrides is in InheritedMember
Julia Solonar
01/08/2021, 1:32 PM