remove recursive type checks from Kysely and subtypes - #1963
Open
koskimas wants to merge 8 commits into
Open
Conversation
|
The latest updates on your projects. Learn more about Vercel for GitHub. |
commit: |
koskimas
commented
Jul 31, 2026
| // intersection, the second of these cost 1.3M instantiations on TypeScript 7. | ||
| bench('ReadonlyKysely assignable to ReadonlyKysely', () => { | ||
| return acceptsReadonlyKysely(readonlyKysely) | ||
| }).types([26, 'instantiations']) |
Member
Author
There was a problem hiding this comment.
This used to cost 1.3M instantations 😬
|
⏱️ TypeScript Benchmark Results |
koskimas
commented
Jul 31, 2026
| // wider builder stand in for a narrower one, which is bivariance, and bivariance | ||
| // can't be spelled as an annotation. See `test/typings/test-d/generic.test-d.ts` | ||
| // for what keeps those in check instead. | ||
| export class Kysely<in out DB> |
Member
Author
There was a problem hiding this comment.
Rather excessive AI babbling... Do we want this here at all?
Member
There was a problem hiding this comment.
Its better if this stuff is kept in PR descriptions - agents love getting context from gh api - when necessary.
koskimas
marked this pull request as ready for review
July 31, 2026 12:36
igalklebanov
reviewed
Aug 2, 2026
igalklebanov
reviewed
Aug 2, 2026
igalklebanov
reviewed
Aug 2, 2026
| bench('Kysely assignable to Kysely', () => { | ||
| return acceptsKysely(plainKysely) | ||
| }).types([11784, 'instantiations']) | ||
| }).types([2, 'instantiations']) |
igalklebanov
reviewed
Aug 2, 2026
igalklebanov
reviewed
Aug 2, 2026
igalklebanov
reviewed
Aug 2, 2026
igalklebanov
reviewed
Aug 2, 2026
igalklebanov
reviewed
Aug 2, 2026
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
Remove
Kyselyassignment type check recursion. This one comes with a rather big caveat, that we might not want:Opus says it only worked so far because typescript gave up with the infinite recursion. If it was able to follow it through, the result would've been an error:
So do we want to keep that feature, which only works because typescript gives up over infinite recursion (assuming Opus is right)?
This is on top of #1962