-
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
Allowed tuples to have both named and anonymous members #53356
Allowed tuples to have both named and anonymous members #53356
Conversation
2dda8ac
to
b7816ea
Compare
@@ -6399,7 +6399,7 @@ export interface TupleType extends GenericType { | |||
hasRestElement: boolean; | |||
combinedFlags: ElementFlags; | |||
readonly: boolean; | |||
labeledElementDeclarations?: readonly (NamedTupleMember | ParameterDeclaration)[]; | |||
labeledElementDeclarations?: readonly (NamedTupleMember | ParameterDeclaration | undefined)[]; |
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.
[Breaking API Change] Is this the right choice to make? One alternative could be to rename it to elementDeclarations
with a type like readonly (ParameterDeclaration | TypeNode)
. My hunch is that that would be preferable, but I'm going with this smaller change for now to make reviewing easier.
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.
Renaming it doesn't feel like a good idea compared to this; I assume that this array is indexed such that there are empty spaces where there are no names?
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 assume that this array is indexed such that there are empty spaces where there are no names?
To the best of my knowledge - yes. There are a couple of places in this PR where it seems to be handled this way
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.
What would the alternative be if not an array with missing names?
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 think that most implementations that would include keeping labeledElementDeclarations
with partial labels could be considered a breaking change. Even if you somehow omit undefined
positions you still end up with a .length
mismatch between those and other properties and that would be rather disastrous.
I think the current structure of this object makes the most sense but if you consider it to be too big of a breaking change then I think a different property should be added when mixed labels are involved and this one should be kept as undefined
in such situations. That will be inconvenient to work with but if maintaining a backward compatibility is the goal then I don't see any other straightforward way of achieving this.
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.
As in, this array seems to be the only one in the interface which actually describes each element; if we were to keep this array without making elements undefined, then the only thing I can think is that all of the named members gets smooshed up together, except now their indexes are lost.
So, it seems to me that the change in the PR is the least breaky option when we're now saying that something can potentially be undefined, because otherwise someone may iterate over this list thinking they're seeing everything, right?
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.
Sorry, I mean "what would the alternative be if not an array which can contain undefined?"
I was responding to exactly that but perhaps I wasn't super clear. Should I try to rephrase my original answer?
if we were to keep this array without making elements undefined, then the only thing I can think is that all of the named members gets smooshed up together, except now their indexes are lost.
yeah, that would be IMHO bad - I mentioned that here: "Even if you somehow omit undefined positions you still end up with a .length mismatch between those and other properties and that would be rather disastrous.". But right now one alternative option comes to my mind - the missing labels could be prefilled with some defaults. You already generate such things for function parameters and stuff at times, like arg_0
, etc, or something like that.
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 know we generate synthetic nodes for names for stuff like declaration emit, but do we commonly store them in the types? (I genuinely don't know the answer!)
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 don't know that either and perhaps you don't ever do that right now. I prefer to leave those optional members as undefined
, that's just an idea that would help you to minimize the impact of this change if you think that this is a strong requirement for this PR to land.
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 think we're agreeing? I think I too prefer to make them undefined
just like this PR does; I just wanted to make sure that was the best choice given the break. Reasonably no matter what, if downstream users care about this particular bit, they're going to have to fix their code.
Co-authored-by: Jake Bailey <[email protected]>
Co-authored-by: Jake Bailey <[email protected]>
I think that it would be nice to get some code coverage for generic mapped types with array constraints. With them named and anonymous elements should be preserved in the same way. Similarly, it should be possible to add new named/anonymous elements using generic conditional types. |
…types Keep partial labels in `createTupleTargetType`
tests/cases/conformance/types/tuple/named/partiallyNamedTuples.ts
Outdated
Show resolved
Hide resolved
This reverts commit 796ec06.
@typescript-bot test this |
Heya @jakebailey, I've started to run the tarball bundle task on this PR at 6a7fdd1. You can monitor the build here. |
Heya @jakebailey, I've started to run the extended test suite on this PR at 6a7fdd1. You can monitor the build here. |
Heya @jakebailey, I've started to run the diff-based top-repos suite on this PR at 6a7fdd1. You can monitor the build here. Update: The results are in! |
Heya @jakebailey, I've started to run the diff-based user code test suite on this PR at 6a7fdd1. You can monitor the build here. Update: The results are in! |
Heya @jakebailey, I've started to run the parallelized Definitely Typed test suite on this PR at 6a7fdd1. You can monitor the build here. Update: The results are in! Update: The results are in! |
Hey @jakebailey, 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 |
@jakebailey Here they are:Comparison Report - main..53356
System
Hosts
Scenarios
Developer Information: |
@typescript-bot test this |
Heya @jakebailey, I've started to run the extended test suite on this PR at 6a7fdd1. You can monitor the build here. |
@jakebailey Here are the results of running the user test suite comparing There were infrastructure failures potentially unrelated to your change:
Otherwise... Something interesting changed - please have a look. Details
|
@jakebailey Here are the results of running the top-repos suite comparing Everything looks good! |
Hey @jakebailey, it looks like the DT test run failed. Please check the log for more details. |
1 similar comment
Hey @jakebailey, it looks like the DT test run failed. Please check the log for more details. |
@typescript-bot run dt |
Heya @jakebailey, I've started to run the parallelized Definitely Typed test suite on this PR at 6a7fdd1. You can monitor the build here. Update: The results are in! |
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.
So, I think this looks fine, and I think the break is probably also fine because it's introducing a new feature that downstream API users will have to handle (and existing code will not contain undefined
and so will keep working with existing tooling).
Maybe someone else has an opinion here; @DanielRosenwasser?
Hey @jakebailey, the results of running the DT tests are ready. |
Co-authored-by: Daniel Rosenwasser <[email protected]>
Fixes #52853
Previously, the
labeledElementDeclarations
property onTupleType
s was all-or-nothing for having named vs. anonymous members. Now that it's possible for them to mix-and-match, this PR pulls logic fromgetParameterNameAtPosition
intogetTupleElementLabel
for filling in a name (`${restParameterName}_${index}`
).Co-authored-by: Mateusz Burzyński [email protected]