-
-
Notifications
You must be signed in to change notification settings - Fork 406
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
Fix enumerable attribute on array length property #972
Conversation
Codecov Report
@@ Coverage Diff @@
## master #972 +/- ##
=======================================
Coverage 59.56% 59.57%
=======================================
Files 166 166
Lines 10815 10817 +2
=======================================
+ Hits 6442 6444 +2
Misses 4373 4373
Continue to review full report at Codecov.
|
Does this fix both cases? >> Array.prototype.propertyIsEnumerable("length")
false
>> [].propertyIsEnumerable("length")
false 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 good to me! :) thanks
Not yet, I will add the fix for |
Yes, please :) that way we fix both |
This is blocked on #977. |
#977 was merged, could you rebase? |
This Pull Request fixes #971 .
It changes the following:
length
property of an array is set to non enumerable