-
Notifications
You must be signed in to change notification settings - Fork 13k
Closed
Labels
SuggestionAn idea for TypeScriptAn idea for TypeScriptToo ComplexAn issue which adding support for may be too complex for the value it addsAn issue which adding support for may be too complex for the value it adds
Description
- VSCode Version: 1.32.3
- OS Version: macOS Mojave 10.14.2
Intellisense doesn't show an object's keys description when the object description is present.
Steps to Reproduce:
- Create a file
test.js
- Paste this code
/**
* @param {Object} options options for foo
* @param {String} options.o1 an option for foo
* @param {String} options.o2 another option for foo
*/
function foo(options) {
}
- Hover over
foo
, you will see only the description foroptions
- Remove the line
* @param {Object} options options for foo
- Hover over
foo
, you will see the description of each key
Does this issue occur when all extensions are disabled?: Yes
Metadata
Metadata
Assignees
Labels
SuggestionAn idea for TypeScriptAn idea for TypeScriptToo ComplexAn issue which adding support for may be too complex for the value it addsAn issue which adding support for may be too complex for the value it adds