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

Type definitions for 'Symbols as WeakMap keys' (#76) #54195

Merged
merged 3 commits into from
Jun 9, 2023

Conversation

leoelm
Copy link
Contributor

@leoelm leoelm commented May 9, 2023

Fixes #52534.

Adding symbol type support to WeakMap, WeakSet, WeakRef and FinalizationRegistry.
The above has been achieved by retrospectively introducing an interface, WeakTypes used for the definition of compatible types for the above mentioned structures.

@typescript-bot typescript-bot added the For Uncommitted Bug PR for untriaged, rejected, closed or missing bug label May 9, 2023
@typescript-bot typescript-bot added For Milestone Bug PRs that fix a bug with a specific milestone and removed For Uncommitted Bug PR for untriaged, rejected, closed or missing bug labels May 9, 2023
@leoelm leoelm marked this pull request as ready for review May 31, 2023 21:43
@leoelm leoelm closed this May 31, 2023
@leoelm leoelm reopened this May 31, 2023
@leoelm leoelm force-pushed the le/symbol-as-weak-keys branch from 723ec0d to 0f47664 Compare June 1, 2023 12:39
@sandersn sandersn requested review from sheetalkamat and rbuckton June 1, 2023 23:33
Copy link
Member

@rbuckton rbuckton left a comment

Choose a reason for hiding this comment

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

I can re-review and merge once conflicts are resolved.

@leoelm leoelm force-pushed the le/symbol-as-weak-keys branch from 0f47664 to 03938b9 Compare June 8, 2023 20:44
@leoelm
Copy link
Contributor Author

leoelm commented Jun 8, 2023

Rebase is now done and all seems to be looking good still.

leoelm and others added 3 commits June 9, 2023 17:41
Support symbols in WeakMap, WeakSet, WeakRef and FinalizationRegistry

Signed-off-by: Leo Elmecker <[email protected]>
@leoelm leoelm force-pushed the le/symbol-as-weak-keys branch from 03938b9 to 8db37ee Compare June 9, 2023 16:47
@rbuckton rbuckton merged commit eeed721 into microsoft:main Jun 9, 2023
*/
set(key: K, value: V): this;
}

interface WeakMapConstructor {
new <K extends object = object, V = any>(entries?: readonly (readonly [K, V])[] | null): WeakMap<K, V>;
readonly prototype: WeakMap<object, any>;
new <K extends WeakKey = WeakKey, V = any>(entries?: readonly [K, V][] | null): WeakMap<K, V>;
Copy link
Contributor

Choose a reason for hiding this comment

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

Regression from #50449.

Copy link
Member

Choose a reason for hiding this comment

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

Ah, thanks for catching this. I missed it in the review.

Copy link
Member

Choose a reason for hiding this comment

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

#54592 will fix this

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
For Milestone Bug PRs that fix a bug with a specific milestone
Projects
Archived in project
Development

Successfully merging this pull request may close these issues.

Type definitions for 'Symbols as WeakMap keys'
4 participants