We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
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
GWT contains a polyfill for Map, used to implement java.util.Map where the key was a string (and avoid hashing the string in JS).
The polyfill contains implementation details for sufficiently old browsers that
Additionally the polyfill itself has special handling for browsers that didn't correctly support Object.create(null).
Object.create(null)
The jsinterop mapping supports old browsers that couldn't use delete as a method name, which is no longer needed.
delete
The text was updated successfully, but these errors were encountered:
Remove GWT's Map polyfill
3ffae87
Fixes gwtproject#10062
No branches or pull requests
GWT contains a polyfill for Map, used to implement java.util.Map where the key was a string (and avoid hashing the string in JS).
The polyfill contains implementation details for sufficiently old browsers that
Additionally the polyfill itself has special handling for browsers that didn't correctly support
Object.create(null)
.The jsinterop mapping supports old browsers that couldn't use
delete
as a method name, which is no longer needed.The text was updated successfully, but these errors were encountered: