-
Notifications
You must be signed in to change notification settings - Fork 24.4k
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 default implementation for Object.getPrototypeOf and Object.setPrototypeOf #47996
Conversation
This pull request was exported from Phabricator. Differential Revision: D66562549 |
4c24e81
to
1095ddb
Compare
This pull request was exported from Phabricator. Differential Revision: D66562549 |
1095ddb
to
95e557f
Compare
…ject.setPrototypeOf (facebook#47996) Summary: Getting and setting an Object's prototype is convulted. Users have to call into the global object to get the method, then call it. This diff adds a JSI API for Object.getPrototype and Object.setPrototype to make it easy for users. Changelog: [Internal] Differential Revision: D66562549
This pull request was exported from Phabricator. Differential Revision: D66562549 |
95e557f
to
8e47721
Compare
…ototypeOf (facebook#47996) Summary: Getting and setting an Object's prototype is convulted. Users have to call into the global object to get the method, then call it. This diff adds a JSI API for Object.getPrototype and Object.setPrototype to make it easy for users. Changelog: [Internal] Differential Revision: D66562549
This pull request was exported from Phabricator. Differential Revision: D66562549 |
…ototypeOf (facebook#47996) Summary: Getting and setting an Object's prototype is convoluted. Users have to call into the global object to get the method, then call it. This diff adds a JSI API for Object.getPrototype and Object.setPrototype to make it easy for users. Changelog: [Internal] Differential Revision: D66562549
8e47721
to
43a340d
Compare
This pull request was exported from Phabricator. Differential Revision: D66562549 |
43a340d
to
d38a9cc
Compare
…ototypeOf (facebook#47996) Summary: Getting and setting an Object's prototype is convoluted. Users have to call into the global object to get the method, then call it. This diff adds a JSI API for Object.getPrototype and Object.setPrototype to make it easy for users. Changelog: [Internal] Differential Revision: D66562549
This pull request was exported from Phabricator. Differential Revision: D66562549 |
d38a9cc
to
0665557
Compare
This pull request was exported from Phabricator. Differential Revision: D66562549 |
…ject.setPrototypeOf (facebook#47996) Summary: Getting and setting an Object's prototype is convoluted. Users have to call into the global object to get the method, then call it. This diff adds a JSI API for Object.getPrototype and Object.setPrototype to make it easy for users. Changelog: [Internal] Reviewed By: fbmal7 Differential Revision: D66562549
…ototypeOf (facebook#47996) Summary: Getting and setting an Object's prototype is convoluted. Users have to call into the global object to get the method, then call it. This diff adds a JSI API for Object.getPrototype and Object.setPrototype to make it easy for users. Changelog: [Internal] Reviewed By: fbmal7 Differential Revision: D66562549
0665557
to
ba81e93
Compare
This pull request was exported from Phabricator. Differential Revision: D66562549 |
…ototypeOf Summary: X-link: facebook/react-native#47996 Getting and setting an Object's prototype is convoluted. Users have to call into the global object to get the method, then call it. This diff adds a JSI API for Object.getPrototype and Object.setPrototype to make it easy for users. Changelog: [Internal] Reviewed By: fbmal7 Differential Revision: D66562549 fbshipit-source-id: 85a2e49deb9d00500544de4cc5ab123c4717398e
…ototypeOf Summary: X-link: facebook/react-native#47996 Getting and setting an Object's prototype is convoluted. Users have to call into the global object to get the method, then call it. This diff adds a JSI API for Object.getPrototype and Object.setPrototype to make it easy for users. Changelog: [Internal] Reviewed By: fbmal7 Differential Revision: D66562549 fbshipit-source-id: 85a2e49deb9d00500544de4cc5ab123c4717398e
This pull request has been merged in 04f33ec. |
This pull request was successfully merged by @tsaichien in 04f33ec When will my fix make it into a release? | How to file a pick request? |
Summary:
Getting and setting an Object's prototype is convulted. Users have to
call into the global object to get the method, then call it.
This diff adds a JSI API for Object.getPrototype and Object.setPrototype
to make it easy for users.
Differential Revision: D66562549