-
Notifications
You must be signed in to change notification settings - Fork 13k
Closed
Labels
Experience EnhancementNoncontroversial enhancementsNoncontroversial enhancementsFix AvailableA PR has been opened for this issueA PR has been opened for this issue
Milestone
Description
Bug Report
🔎 Search Terms
- jsdoc
@link
@see
🕗 Version & Regression Information
4.3.0-dev.20210325
💻 Code
For the TS:
interface Foo {
/**
* {@link Foo#xyz}
*
* {@link Foo.xyz}
*
* {@link Foo~xyz}
*
* {@link xyz}
*/
abc: number;
/**
* {@link abc}
*/
xyz: number;
}
Hover over abc
and view the links.
🙁 Actual behavior
None of the links are resolved. I was not able to find a way to have documentation on one property refer to another property
🙂 Expected behavior
If we are following JSDoc, I'd
expect that Foo#xyz
would be resolved. However we may also want to support: xyz
(and maybe Foo.xyz
?)
htbkoo
Metadata
Metadata
Assignees
Labels
Experience EnhancementNoncontroversial enhancementsNoncontroversial enhancementsFix AvailableA PR has been opened for this issueA PR has been opened for this issue