-
-
Notifications
You must be signed in to change notification settings - Fork 411
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 change-array-by-copy
methods
#3412
Conversation
Test262 conformance changes
Fixed tests (236):
|
Codecov ReportAttention:
Additional details and impacted files@@ Coverage Diff @@
## main #3412 +/- ##
==========================================
- Coverage 45.64% 45.45% -0.19%
==========================================
Files 483 483
Lines 49517 49743 +226
==========================================
+ Hits 22600 22613 +13
- Misses 26917 27130 +213
☔ View full report in Codecov by Sentry. |
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.
Nice work!
Just some small nitpicks on the spec doc indentation, the rest looks good to me! :)
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 `change-array-by-copy` methods * Apply review
This pull request implements our missing
Array
andTypedArray
methods from ES14. Specifically:Array.prototype.toReversed
Array.prototype.toSorted
Array.prototype.toSpliced
Array.prototype.with
TypedArray.prototype.toReversed
TypedArray.prototype.toSorted
TypedArray.prototype.with