Closed
Description
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:
interface C {
m()
/** {@link m} */
p()
/** @see {n} */
q()
n: 1
}
Nested functions work fine:
function nestor() {
function r2() { }
/** {@link r2} */
function ref() { }
/** @see {r2} */
function d3() { }
}