-
Notifications
You must be signed in to change notification settings - Fork 30.4k
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
Strict function variance fixes #20219
Conversation
@sandersn Please fix the failures indicated in the Travis CI log. |
types/bootbox/index.d.ts
Outdated
title?: string | Element; | ||
callback?: (result: boolean | string) => any; | ||
callback?: (result: T) => any; |
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.
Nit: fix the indentation here.
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.
Huh, I didn't think anybody used tabs in DT. Fixed.
append<U>(el: U): <T>(list: T[]) => Array<(T & U)>; | ||
append<T, U>(el: U, list: T[]): Array<(T & U)>; |
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.
Why is this not Array<T | U>
? I guess it was already written this way...
wat
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.
convenience!
Note that Travis only gets half way through tests before timing out. I assume that's because I change node and react and jquery. I ran the tests locally and found a couple of failures that I fixed. |
This PR updates popular packages to work with the upcoming
"strictFunctionTypes": true
option in the upcoming Typescript 2.6 (microsoft/TypeScript#18654). When this flag is on, the compiler determines whether type parameters should be related covariantly, contravariantly or invariantly and enforces this except for methods. (Methods are an exception because they are so commonly incorrect.)The fixes fall into 4 categories:
Because methods are exempt from this check, the type
(a?: number) => object
can be rewritten as{ bivarianceHack(a?: number) => object }['bivarianceHack']
. The second type is identical in almost every way, except that it is related bivariantly — unsafely. I only used this hack to fix backbone and react, where I believe the pattern is intended even if it's unsafe.