forked from WebKit/WebKit-http
-
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.
https://bugs.webkit.org/show_bug.cgi?id=186012 Reviewed by Saam Barati. JSTests: * stress/array-flatten.js: (shouldThrow): * test262/expectations.yaml: Source/JavaScriptCore: Rename Array#flatten to Array#flat. This rename is done in TC39 since flatten conflicts with the mootools' function name. * builtins/ArrayPrototype.js: (globalPrivate.flatIntoArray): (flat): (globalPrivate.flatIntoArrayWithCallback): (flatMap): (globalPrivate.flattenIntoArray): Deleted. (flatten): Deleted. (globalPrivate.flattenIntoArrayWithCallback): Deleted. * runtime/ArrayPrototype.cpp: (JSC::ArrayPrototype::finishCreation): LayoutTests: * inspector/model/remote-object-get-properties-expected.txt: * js/Object-getOwnPropertyNames-expected.txt: * js/script-tests/Object-getOwnPropertyNames.js: git-svn-id: http://svn.webkit.org/repository/webkit/trunk@232226 268f45cc-cd09-0410-ab3c-d52691b4dbfc
- Loading branch information
1 parent
ebf7dc7
commit 5124407
Showing
10 changed files
with
90 additions
and
77 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 |
---|---|---|
@@ -1,3 +1,14 @@ | ||
2018-05-26 Yusuke Suzuki <[email protected]> | ||
|
||
[JSC] Rename Array#flatten to flat | ||
https://bugs.webkit.org/show_bug.cgi?id=186012 | ||
|
||
Reviewed by Saam Barati. | ||
|
||
* stress/array-flatten.js: | ||
(shouldThrow): | ||
* test262/expectations.yaml: | ||
|
||
2018-05-23 Yusuke Suzuki <[email protected]> | ||
|
||
Upgrade test262 to May 24 version | ||
|
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 |
---|---|---|
@@ -1,3 +1,14 @@ | ||
2018-05-26 Yusuke Suzuki <[email protected]> | ||
|
||
[JSC] Rename Array#flatten to flat | ||
https://bugs.webkit.org/show_bug.cgi?id=186012 | ||
|
||
Reviewed by Saam Barati. | ||
|
||
* inspector/model/remote-object-get-properties-expected.txt: | ||
* js/Object-getOwnPropertyNames-expected.txt: | ||
* js/script-tests/Object-getOwnPropertyNames.js: | ||
|
||
2018-05-25 Youenn Fablet <[email protected]> | ||
|
||
Migrate From-Origin to Cross-Origin-Resource-Policy | ||
|
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 |
---|---|---|
@@ -1,3 +1,24 @@ | ||
2018-05-26 Yusuke Suzuki <[email protected]> | ||
|
||
[JSC] Rename Array#flatten to flat | ||
https://bugs.webkit.org/show_bug.cgi?id=186012 | ||
|
||
Reviewed by Saam Barati. | ||
|
||
Rename Array#flatten to Array#flat. This rename is done in TC39 since flatten | ||
conflicts with the mootools' function name. | ||
|
||
* builtins/ArrayPrototype.js: | ||
(globalPrivate.flatIntoArray): | ||
(flat): | ||
(globalPrivate.flatIntoArrayWithCallback): | ||
(flatMap): | ||
(globalPrivate.flattenIntoArray): Deleted. | ||
(flatten): Deleted. | ||
(globalPrivate.flattenIntoArrayWithCallback): Deleted. | ||
* runtime/ArrayPrototype.cpp: | ||
(JSC::ArrayPrototype::finishCreation): | ||
|
||
2018-05-25 Mark Lam <[email protected]> | ||
|
||
for-in loops should preserve and restore the TDZ stack for each of its internal loops. | ||
|
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