```ts class C { m() { } /** {@link m} */ p() { } /** @see {m} */ q() { } } ``` Expected: goto-def/find-all-refs find the two references to `m` in jsdoc. Actual: They don't. Note that interfaces have the same problem: ```ts interface C { m() /** {@link m} */ p() /** @see {n} */ q() n: 1 } ``` Nested functions work fine: ```ts function nestor() { function r2() { } /** {@link r2} */ function ref() { } /** @see {r2} */ function d3() { } } ```