-
-
Notifications
You must be signed in to change notification settings - Fork 849
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
es5 support for Map/Set #437
Conversation
Hmm, CI failed, I guess according this 017de43 |
Awesome! I'll hope to review in detail hopefully somewhere next week |
Need to decide
And I have doubts about a lot of copy-paste between implementations proxy and es5 |
|
We have some checking here |
@mweststrate I think I've done. But I don't understand one thing. Should I update |
Awesome! I don't know the answer to that question from the top of my head,
but if a test in which you modify an entry in a map, that is in a map, that
is in an object, and that works, it's correct, as the mechanism is used to
ensure that changes propagate through unmodified parents. I'm gonna try to
carve out some time tomorrow to review in detail!
…On Mon, Oct 21, 2019 at 5:49 PM Andrey Boldyrev ***@***.***> wrote:
@mweststrate <https://github.com/mweststrate> I think I've done. But I
don't understand one thing. Should I update markChangesRecursively? It
skips Map and Set, should it be an explicit?
—
You are receiving this because you were mentioned.
Reply to this email directly, view it on GitHub
<#437?email_source=notifications&email_token=AAN4NBAEPDGWUTRUD5VZ67DQPXMSDA5CNFSM4I5VFPDKYY3PNVWWK3TUL52HS4DFVREXG43VMVBW63LNMVXHJKTDN5WW2ZLOORPWSZGOEB3AHYI#issuecomment-544605153>,
or unsubscribe
<https://github.com/notifications/unsubscribe-auth/AAN4NBHOQ2UIXRWYHWGUNSLQPXMSDANCNFSM4I5VFPDA>
.
|
Superficially this looks great! I'll merge it into the v4 branch, and to further local investigation there. I'll also send a maintainer invite. That will allow you to directly commit to that branch, which avoids the whole song-and-dance of maintaining your own fork :) |
@mweststrate Glad to hear that! Thanks a lot for invitation! |
🎉 This PR is included in version 5.0.0 🎉 The release is available on: Your semantic-release bot 📦🚀 |
Hi guys! This is a draft solution for es5 map support. What do you think about this approach?
It should works with babel preset, also it may works in IE11 ;)
Now
map draft
tests passes and I'm planning to add Set support, patches, etc