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=215715 Reviewed by Ross Kirsling. JSTests: * stress/intl-object.js: * test262/expectations.yaml: Mark 4 test cases as passing. Source/JavaScriptCore: This patch utilizes JSC_TO_STRING_TAG_WITHOUT_TRANSITION() to define Symbol.toStringTag on Intl namespace object, implementing the recent spec change [1] and aligning JSC with V8. Also, adds inherits() ASSERT to match (most of) the other built-ins. [1]: tc39/ecma402#487 * runtime/IntlObject.cpp: (JSC::IntlObject::finishCreation): git-svn-id: http://svn.webkit.org/repository/webkit/trunk@266015 268f45cc-cd09-0410-ab3c-d52691b4dbfc
- Loading branch information
1 parent
2e5eed4
commit 2275634
Showing
5 changed files
with
30 additions
and
8 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,13 @@ | ||
2020-08-21 Alexey Shvayka <[email protected]> | ||
|
||
Define Intl[Symbol.toStringTag] | ||
https://bugs.webkit.org/show_bug.cgi?id=215715 | ||
|
||
Reviewed by Ross Kirsling. | ||
|
||
* stress/intl-object.js: | ||
* test262/expectations.yaml: Mark 4 test cases as passing. | ||
|
||
2020-08-21 Alexey Shvayka <[email protected]> | ||
|
||
Function.prototype.bind should not clamp "length" to int32 | ||
|
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,19 @@ | ||
2020-08-21 Alexey Shvayka <[email protected]> | ||
|
||
Define Intl[Symbol.toStringTag] | ||
https://bugs.webkit.org/show_bug.cgi?id=215715 | ||
|
||
Reviewed by Ross Kirsling. | ||
|
||
This patch utilizes JSC_TO_STRING_TAG_WITHOUT_TRANSITION() to define Symbol.toStringTag | ||
on Intl namespace object, implementing the recent spec change [1] and aligning JSC with V8. | ||
Also, adds inherits() ASSERT to match (most of) the other built-ins. | ||
|
||
[1]: https://github.com/tc39/ecma402/pull/487 | ||
|
||
* runtime/IntlObject.cpp: | ||
(JSC::IntlObject::finishCreation): | ||
|
||
2020-08-21 Alexey Shvayka <[email protected]> | ||
|
||
Function.prototype.bind should not clamp "length" to int32 | ||
|
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