-
-
Notifications
You must be signed in to change notification settings - Fork 407
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 Reflect built-in object #1033
Conversation
Codecov Report
@@ Coverage Diff @@
## master #1033 +/- ##
==========================================
+ Coverage 58.70% 59.15% +0.44%
==========================================
Files 176 177 +1
Lines 12391 12534 +143
==========================================
+ Hits 7274 7414 +140
- Misses 5117 5120 +3
Continue to review full report at Codecov.
|
Conformance looks very good: Test262 conformance changes:
|
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Looks really good, there are a few things I think can be cleaned up and others that might require some discussion.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Looks good to me! :)
* Implement Reflect built-in object * Use receiver in get and set * Implement Reflect.construct with newTarget Co-authored-by: tofpie <tofpie@users.noreply.github.com>
This Pull Request implements the
Reflect
built-in object.It changes the following:
Reflect
built-in objectCreateListFromArrayLike
and use it inFunction.prototype.apply