-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Bug 1672862 - Part 1: Change TypedArray indexed properties to report …
…as configurable. r=tcampbell Implements the changes from <tc39/ecma262#2164> and <tc39/ecma262#2210> for [[GetOwnProperty]]. Part 3 will update [[DefineOwnProperty]] and part 5 updates [[Set]]. A side-effect of this change is that non-extensible, non-empty TypedArrays are no longer considered as sealed by `Object.isSealed()`. A later patch in this series will update test262 to enable more currently skipped TypedArray tests. Differential Revision: https://phabricator.services.mozilla.com/D99380 UltraBlame original commit: efd88e38955fc4722c6a882c175fdb48d6ff9e10
- Loading branch information
Showing
6 changed files
with
64 additions
and
48 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -336,7 +336,7 @@ assertEq | |
desc | ||
. | ||
configurable | ||
false | ||
true | ||
) | ||
; | ||
assertEq | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -1873,8 +1873,6 @@ isTypedArrayElement | |
{ | ||
return | ||
JSPROP_ENUMERATE | ||
| | ||
JSPROP_PERMANENT | ||
; | ||
} | ||
return | ||
|