-
Notifications
You must be signed in to change notification settings - Fork 12.8k
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
feat(33367): support destructuring parameter @param tag in tsdoc #50951
Conversation
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
See previous comments (github PR extension mistakenly posted them early).
Do you want to keep working on this? Otherwise I'd like to close it to reduce the number of open PRs. @gabritto This is related to the work you're doing on param completions, since it would reduce the complexity of the tags you'd have to emit. |
@typescript-bot pack this |
Hey @gabritto, I've packed this into an installable tgz. You can install it for testing by referencing it in your
and then running There is also a playground for this build and an npm module you can use via |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Couple of more requests based on the new tests.
Also addresses or even fixes #11859 |
@typescript-bot pack this |
Hey @gabritto, I've packed this into an installable tgz. You can install it for testing by referencing it in your
and then running There is also a playground for this build and an npm module you can use via |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
I unfortunately found more bugs and things we'd like to have before merging the current implementation (JSDoc and destructuring are tricky).
(1) When two or more parameters have the same name, we should probably have a diagnosis (in JS only I think? @sandersn can confirm) on the @param annotation saying the annotation applies to more than one parameter.
Example:
/**
* @param {string} a - a param // this documents both `a` and the `a` in `{ a: newA }`.
*/
function bar(a, { a: newA }) { }
(2) When checking a function call, we don't get the correct types from the @param annotations following the new logic. Example:
/**
* @param {number} a - a param
*/
function foo({ a }) {
a;
}
foo({ a: 1 }); // We incorrectly expect a parameter of type `number` instead of type `{ a: number }`.
The same error also affects signature help info, and in fact the signature of foo
anywhere else other than its declaration.
(3) Destructured property has wrong type on hover (might be the same bug as (2), but might be different). Example:
/**
* @param {string} a - a param
*/
function fizz({ a: newA }) { // `a` has type `any` on hover instead of type `string`
}
The error should be JS-only, but I thought that JSDoc errors only show in JS anyway. Better test that though. |
@a-tarasyuk do you want to keep working on this? |
@sandersn Yes., I need some clarification for one case that strikes me as a bit exceptional :).
In both cases, we have binding pattern parameters /**
* @param {{ a: string, b: string }} foo
*/
function f({ a, b }, { c, d }) { } /**
* @param {number} a
*/
function f({ a, b }) { } How should we determine when TypeScript should strictly use the type from TypeScript follows logic wherein, if there is a declared type (in current case jsdoc const declaredType = tryGetTypeFromEffectiveTypeNode(declaration);
...
if (declaredType) {
return addOptionality(declaredType, isProperty, isOptional);
}
|
As far as I can tell, both calls match tags by index and not by name. The second examples fails because the top-level parameter I can see two fixes here:
For (1) and (2), though, I don't know whether call checking will then work, because |
Fixes #33367