-
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
Type definitions for 'Symbols as WeakMap keys' (#76) #54195
Conversation
723ec0d
to
0f47664
Compare
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 can re-review and merge once conflicts are resolved.
0f47664
to
03938b9
Compare
Rebase is now done and all seems to be looking good still. |
Support symbols in WeakMap, WeakSet, WeakRef and FinalizationRegistry Signed-off-by: Leo Elmecker <[email protected]>
03938b9
to
8db37ee
Compare
*/ | ||
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>; |
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.
Regression from #50449.
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.
Ah, thanks for catching this. I missed it in the review.
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.
#54592 will fix this
Fixes #52534.
Adding symbol type support to
WeakMap
,WeakSet
,WeakRef
andFinalizationRegistry
.The above has been achieved by retrospectively introducing an interface,
WeakTypes
used for the definition of compatible types for the above mentioned structures.