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

Add java.util.WeakHashMap #5

Open
jdegoes opened this issue Dec 5, 2018 · 4 comments
Open

Add java.util.WeakHashMap #5

jdegoes opened this issue Dec 5, 2018 · 4 comments

Comments

@jdegoes
Copy link

jdegoes commented Dec 5, 2018

Could be based on WeakMap, supported since ECMAScript 6 (2015) and on all major browsers.

@sjrd
Copy link
Member

sjrd commented Dec 5, 2018

Unfortunately not. JavaScript's WeakMap lacks several fundamental features compared to Java's. In particular, it does not provide iteration of keys/entries (on purpose).

To implement java.util.WeakHashMap, we will need something more, which might be coming with a proposal for WeakRefs: https://github.com/tc39/proposal-weakrefs

@tarsa
Copy link

tarsa commented Sep 10, 2020

Seems that WeakRefs are now present in majority (by market share) of browsers: https://www.caniuse.com/?search=weakref https://github.com/tc39/proposal-weakrefs/pull/212/files

@sjrd
Copy link
Member

sjrd commented Dec 16, 2020

WeakRefs are now at Stage 4, so we could now implement this. PR welcome.

@sjrd sjrd transferred this issue from scala-js/scala-js Jul 9, 2021
@sjrd
Copy link
Member

sjrd commented Jul 9, 2021

j.u.WeakHashMap can now be implemented in this repo, on top of WeakReference and ReferenceQueue.

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

3 participants