Thanks to visit codestin.com
Credit goes to github.com

Skip to content

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

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

Activity

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment

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