RESOLVED FIXED 280381
[JSC] Check if the species watchpoint is valid before `array.concat()` fast path
https://bugs.webkit.org/show_bug.cgi?id=280381
Summary [JSC] Check if the species watchpoint is valid before `array.concat()` fast path
Sosuke Suzuki
Reported 2024-09-25 18:46:46 PDT
The Array.prototype.concat test262 started failing due to https://commits.webkit.org/284060@main. This was because the species check was not performed before entering the fast path. ------ ! NEW FAIL test/built-ins/Array/prototype/concat/create-proto-from-ctor-realm-non-array.js (strict mode) Exception: Test262Error: Object.getPrototypeOf(array.concat()) returns CustomCtor.prototype Expected SameValue(«», «[object Object]») to be true ! NEW FAIL test/built-ins/Array/prototype/concat/create-ctor-non-object.js (strict mode) Exception: Test262Error: a.concat() throws a TypeError exception Expected a TypeError to be thrown but no exception was thrown at all ! NEW FAIL test/built-ins/Array/prototype/concat/create-proto-from-ctor-realm-non-array.js (default) Exception: Test262Error: Object.getPrototypeOf(array.concat()) returns CustomCtor.prototype Expected SameValue(«», «[object Object]») to be true ! NEW FAIL test/built-ins/Array/prototype/concat/create-ctor-non-object.js (default) Exception: Test262Error: a.concat() throws a TypeError exception Expected a TypeError to be thrown but no exception was thrown at all ! NEW FAIL test/built-ins/Array/prototype/concat/create-species-non-ctor.js (strict mode) Exception: Test262Error: a.concat() throws a TypeError exception Expected a TypeError to be thrown but no exception was thrown at all ! NEW FAIL test/built-ins/Array/prototype/concat/create-species-non-ctor.js (default) Exception: Test262Error: a.concat() throws a TypeError exception Expected a TypeError to be thrown but no exception was thrown at all ! NEW FAIL test/built-ins/Array/prototype/concat/create-species-poisoned.js (strict mode) Exception: Test262Error: a.concat() throws a Test262Error exception Expected a Test262Error to be thrown but no exception was thrown at all ! NEW FAIL test/built-ins/Array/prototype/concat/create-species-poisoned.js (default) Exception: Test262Error: a.concat() throws a Test262Error exception Expected a Test262Error to be thrown but no exception was thrown at all ! NEW FAIL test/built-ins/Array/prototype/concat/create-species.js (strict mode) Exception: Test262Error: The value of callCount is expected to be 1 Expected SameValue(«0», «1») to be true ! NEW FAIL test/built-ins/Array/prototype/concat/create-species.js (default) Exception: Test262Error: The value of callCount is expected to be 1 Expected SameValue(«0», «1») to be true ! NEW FAIL test/built-ins/Array/prototype/concat/create-species-abrupt.js (strict mode) Exception: Test262Error: a.concat() throws a Test262Error exception Expected a Test262Error to be thrown but no exception was thrown at all ! NEW FAIL test/built-ins/Array/prototype/concat/create-ctor-poisoned.js (strict mode) Exception: Test262Error: a.concat() throws a Test262Error exception Expected a Test262Error to be thrown but no exception was thrown at all ! NEW FAIL test/built-ins/Array/prototype/concat/create-species-abrupt.js (default) Exception: Test262Error: a.concat() throws a Test262Error exception Expected a Test262Error to be thrown but no exception was thrown at all ! NEW FAIL test/built-ins/Array/prototype/concat/create-ctor-poisoned.js (default) Exception: Test262Error: a.concat() throws a Test262Error exception Expected a Test262Error to be thrown but no exception was thrown at all
Attachments
Sosuke Suzuki
Comment 1 2024-09-25 18:52:13 PDT
EWS
Comment 2 2024-09-26 21:06:25 PDT
Committed 284330@main (e7aeca7171e3): <https://commits.webkit.org/284330@main> Reviewed commits have been landed. Closing PR #34276 and removing active labels.
Radar WebKit Bug Importer
Comment 3 2024-09-26 21:07:16 PDT
Yusuke Suzuki
Comment 4 2024-10-09 00:04:03 PDT
*** Bug 281061 has been marked as a duplicate of this bug. ***
Note You need to log in before you can comment on or make changes to this bug.