I have one class that is documented, and another one is implementing that interface. How can I inherit the documentation as well?
class A {
///Documentation
void documented(){}
}
class B implements A {
var a = A();
///@inherit from A
void documented(){}
}
// later I have instance of B and I would like to have documentation on method.
B().documented(); // documentation is empty