-
-
Notifications
You must be signed in to change notification settings - Fork 408
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
Implement Proxy
built-in object
#1300
Comments
I'm interested in working on this. |
I assigned it to you, let us know if you'd like any help! |
@teymour-aldridge are you still working on this? The object API changed considerably to be more friendly when creating new exotic objects, maybe you could check it out if you have been having trouble implementing proxy objects! |
Changed the assignment to me, as I did some testing and got a working prototype. @teymour-aldridge If you already did some work on this let me know! |
No worries; sorry, I was beleaguered with other things :) |
@raskad, how is this going? |
Merged #1583, should unblock this. |
ECMASCript feature
ECMAScript allows using the
Proxy
object to re-define operations for normal objects, doing a "proxy" functionality. You can check how this works in the MDN, and in the specification.Example code
Tips for implementation
You can see #1033 to get ideas on how to implement the
Proxy
object. Some functionality (since it requires intercepting calls to other objects) might require some complex work. Feel free to ask for mentoring.The text was updated successfully, but these errors were encountered: