Skip to content
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

Merged
merged 5 commits into from
Oct 3, 2017
Merged

Strict function variance fixes #20219

merged 5 commits into from
Oct 3, 2017

Conversation

sandersn
Copy link
Contributor

@sandersn sandersn commented Oct 2, 2017

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:

  1. Fix bugs in tests found by the errors.
  2. Fix definitions.
  3. Add type assertions in tests to silence the errors.
  4. Hack definitions to allow unsafe, but intended, patterns.

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.

@typescript-bot typescript-bot added the Popular package This PR affects a popular package (as counted by NPM download counts). label Oct 2, 2017
@typescript-bot
Copy link
Contributor

@sandersn Please fix the failures indicated in the Travis CI log.

title?: string | Element;
callback?: (result: boolean | string) => any;
callback?: (result: T) => any;
Copy link
Member

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.

Copy link
Contributor Author

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)>;
Copy link
Member

@DanielRosenwasser DanielRosenwasser Oct 3, 2017

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

Copy link
Contributor Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

convenience!

@sandersn
Copy link
Contributor Author

sandersn commented Oct 3, 2017

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.

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
Popular package This PR affects a popular package (as counted by NPM download counts).
Projects
None yet
Development

Successfully merging this pull request may close these issues.

5 participants