Skip to content
New issue

Have a question about this project? # for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “#”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? # to your account

fix first match in RegExpMatchArray being possibly undefined when noUncheckedIndexedAccess is enabled #49682

Conversation

DetachHead
Copy link
Contributor

@DetachHead DetachHead commented Jun 26, 2022

Fixes #42296

@typescript-bot typescript-bot added the For Uncommitted Bug PR for untriaged, rejected, closed or missing bug label Jun 26, 2022
@DetachHead DetachHead marked this pull request as ready for review June 26, 2022 09:07
@typescript-bot
Copy link
Collaborator

The TypeScript team hasn't accepted the linked issue #42296. If you can get it accepted, this PR will have a better chance of being reviewed.

Copy link
Member

@sandersn sandersn left a comment

Choose a reason for hiding this comment

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

This looks correct, but there are almost certainly people relying on RegExpMatchArray to be assignable to string[] which will be broken like assignFromStringInterface is. I want to estimate how big the break will be by looking at user tests and Definitely Typed tests.

Comment on lines +14 to +15
match(regexp: string): RegExpMatchArray;
match(regexp: RegExp): RegExpMatchArray;
Copy link
Member

Choose a reason for hiding this comment

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

why did these change? (and in stringLiteralTypeIsSubtypeOfString). Is it because RegExpMatchArray was formerly assignable to string[], but no longer is?

(or maybe the other way round, I never get variance the right way round the first time.)

Copy link
Contributor Author

Choose a reason for hiding this comment

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

i think it's the other way around, that string[] used to be assignable to RegExpMatchArray but no longer is because of:

tests/cases/conformance/types/primitives/string/assignFromStringInterface2.ts(42,1): error TS2322: Type 'NotString' is not assignable to type 'String'.
  The types returned by 'match(...)' are incompatible between these types.
    Property '0' is missing in type 'string[]' but required in type 'RegExpMatchArray'.

i assume that since there were no new errors in DefinitelyTyped that this shouldn't be an issue?

@sandersn sandersn requested a review from RyanCavanaugh July 6, 2022 23:06
@sandersn sandersn self-assigned this Jul 6, 2022
@sandersn
Copy link
Member

sandersn commented Jul 6, 2022

@typescript-bot run dt
@typescript-bot user test this

@typescript-bot
Copy link
Collaborator

typescript-bot commented Jul 6, 2022

Heya @sandersn, I've started to run the diff-based user code test suite on this PR at 93e0cfe. You can monitor the build here.

Update: The results are in!

@typescript-bot
Copy link
Collaborator

typescript-bot commented Jul 6, 2022

Heya @sandersn, I've started to run the parallelized Definitely Typed test suite on this PR at 93e0cfe. You can monitor the build here.

@typescript-bot
Copy link
Collaborator

@sandersn
Great news! no new errors were found between main..refs/pull/49682/merge

@DetachHead DetachHead requested a review from sandersn July 7, 2022 08:25
Copy link
Member

@sandersn sandersn left a comment

Choose a reason for hiding this comment

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

Well, no breaks from the user test suites, so let's merge this after 4.8 has shipped.

@RyanCavanaugh RyanCavanaugh added this to the TypeScript 4.9.0 milestone Jul 20, 2022
@sandersn sandersn merged commit 3b80ddc into microsoft:main Aug 16, 2022
MicahZoltu added a commit to MicahZoltu/TypeScript that referenced this pull request May 7, 2023
Fixes microsoft#49635
Behavior similar to microsoft#49682

microsoft#49635 was originally rejected because JavaScript has a stupid edge case where `''.split('')` and `''.split(new RegExp(''))` return an empty array so we cannot assert that the first element is *always* a string.  However, given that the vast majority of use cases for `split` include a literal separator, we can create a set of overloads that results in the non-empty literal separator returning a more narrow type that has a string for the first element.

```ts
''.split('') // []; type= string[]
''.split(new RegExp('')) // []; type= string[]
''.split('a') // ['']; type= [string, ...string[]]
''.split(new RegExp('a')) // ['']; type= string[]
```

Unfortunately, I don't know of a way to differentiate a regular expression literal and a regular expression so that case still always returns an empty first element even though I don't even think it is possible to have an empty regular expression literal.

I don't *believe* there are any other edge cases where split can return an empty array, but if there are please let me know and I can try to update, or we can close the PR and just leave a comment on microsoft#49635 for the next person.
# for free to join this conversation on GitHub. Already have an account? # to comment
Labels
For Uncommitted Bug PR for untriaged, rejected, closed or missing bug
Projects
Archived in project
Development

Successfully merging this pull request may close these issues.

RegExpMatchArray index 0 incorrectly possibly undefined when noUncheckedIndexedAccess is enabled
4 participants