Skip to content

Missing link to class methods starting with capital 'B' #224

Closed
@jipodine

Description

@jipodine

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'.

Metadata

Metadata

Assignees

No one assigned

    Type

    No type

    Projects

    No projects

    Milestone

    No milestone

    Relationships

    None yet

    Development

    No branches or pull requests

    Issue actions