Microsoft/TypeScript
Auf GitHub ansehenMissing `Go to definition` links when accessing properties after `jsdoc` typecast
Open
#60.562 geöffnet am 22. Nov. 2024
Experience EnhancementHelp WantedSuggestion
Repository-Metriken
- Stars
- (48.455 Stars)
- PR-Merge-Metriken
- (Durchschn. Merge 6T 17h) (9 gemergte PRs in 30 T)
Beschreibung
🔎 Search Terms
jsdoc typecast, typecast property access, jsdoc go to definition
🕗 Version & Regression Information
- This is the behavior in every version I tried, and I reviewed the FAQ for entries about jsdoc, typecast
⏯ Playground Link
💻 Code
/** @typedef {{ name: string }} Foo */
const obj = /** @type {Foo} */({});
// Hover with `ctrl` over `Foo` below doesn't recognize the type definition
const obj1 = /** @type {Foo} */({}).name;
const obj2 = /** @type {Foo} */({})['name'];
🙁 Actual behavior
Hovering over Foo with ctrl pressed doesn't recognize the type definition
🙂 Expected behavior
Hovering over Foo with ctrl pressed recognizes the type definition
Additional information about the issue
No response