-
Notifications
You must be signed in to change notification settings - Fork 12.6k
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
Report errors on all plausible overloads #27249
Comments
+1 on the suggestion. Also, is there any overlap with @DanielRosenwasser's work on union error messages and overlappy-types? (#27087) Could similar ideas be used to try and report the overload the user probably meant. In the example, there is an overlap between the first argument for the first overload, and no overlap for the second overload: so the user probably mean the first one. For small numbers of overloads I think showing all the errors is best as it's quite informative to see TypeScript's reasoning for pruning overloads. My suggestion is really aimed at the larger cases where this wouldn't be tractable. |
Basic notes:
Currently not in scope: Reporting for every plausible overload |
We are running into this issue with preactjs and fixed it by swapping the overloads around. It seems more like a workaround, but it does fix the issue for us for now. Choosing the declaration with the closest arity seems like the best bet to me. In our case the problematic function has this definition (simplified): interface ComponentFactory<P> {
props: P;
}
interface Attributes {}
function h<P>(
node: ComponentFactory<P>,
params: Attributes & P | null,
...children: any[]
): any;
function h(
node: string,
params: JSX.HTMLAttributes & JSX.SVGAttributes & Attributes | null,
...children: any[]
): any; |
Came across this issue with the following code:
The error is that the options provided are incorrect, not that string isn't assignable to number. It seems like any functions which take options and have overloads will have poor error reporting when users provide incorrect options. |
Thanks for fixing this, @sandersn! |
TypeScript Version: 3.1
Search Terms: overload all errors
Code
When multiple overloads with very different signatures exist, the ordering is effectively arbitrary. This creates really bad error messages when the "last" overload wasn't the one you were trying to call.
While some functions have an extremely large number of overloads, when there are only a few (< 5?) overloads, we should report their failures individually so that hopefully one of the error messages is useful.
e.g. instead of
it should be
Playground Link: Link
Related Issues: #26633, others certainly exist
See also https://github.com/garybernhardt/preact-typescript-component-wont-build
The text was updated successfully, but these errors were encountered: