-
-
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
Add missing 'unscopables' to Array.prototype[@@unscopables]
#3111
Conversation
Test262 conformance changes
Fixed tests (2):
|
Codecov Report
@@ Coverage Diff @@
## main #3111 +/- ##
==========================================
+ Coverage 50.42% 50.67% +0.25%
==========================================
Files 444 444
Lines 45877 42621 -3256
==========================================
- Hits 23132 21599 -1533
+ Misses 22745 21022 -1723
|
Haven't forgot about reviewing this :) We just have to investigate the regressions first, but the PR looks great! |
It seems that the regressions are previous false positives, since I can also see them fail in #3094, which doesn't seem related. |
No worries!
I assume you mean the failing |
I added the comment with test conformance changes based on a local result.
where CI seems to be fine https://github.com/boa-dev/boa/actions/runs/5468021068/jobs/9955094733#step:11:80. So something is up for me locally. I'll clean my environment and try to figure out whats going on and create an issue separately with local details when I can reproduce it afterwards. |
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.
Since the regressions seem to be unrelated, we can merge this. Thanks!
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! :)
Thanks for the reviews ;) |
This also includes the variants for
toSorted
,toSpliced
andtoReversed
even though they are not implemented yet. This doesn't have any effect on the runtime sincewith
is not implemented to useSymbol.unscopables
.