Closed
Description
Hi,
While this produces the correct result (a link in the see section)
/**
* First-class.
*/
export class A {
/**
* Constructs a first-class object.
* @see {@link A#fun}
*/
constructor() {
}
/**
* First-class fun.
*/
fun() {}
}
export default A;
This does not
/**
* Second-class.
*/
export class B {
/**
* Constructs a second-class object.
* @see {@link B#fun}
*/
constructor() {}
/**
* Second-class fun.
*/
fun() {}
}
export default B;
It seems to be related to the class name starting with a capital 'B'.