In the documentation generated by the following code, B's constructor does not inherit A's constructor documentation.
A is documented correctly but B's documentation is empty.
/**
* Does something with a number.
*
* @class
* @param {number} a - The number.
*/
function A(a) {
this.a = a;
}
/**
* @class
* @augments A
* @inheritdoc
*/
function B() {
A.apply(this, arguments);
}
In the documentation generated by the following code,
B's constructor does not inheritA's constructor documentation.Ais documented correctly butB's documentation is empty.