Severity: MEDIUM (fix-batch regressions)
The 2026-06-24 re-measure (main @ 911a97948, node v26.3.0) shows the #5579 fix batch recovered the big regression clusters (overall 90.7% → 93.3%) but introduced 26 fresh test262 failures that passed on the prior run (sweep-0623). Three concrete sub-clusters:
1. Object.defineProperty / defineProperties — "property should be writable" (15)
A property defined with {writable:true} (or default) now reports non-writable. Suspect: #5574 (own valueOf wins in member dispatch), #5588 (Object.assign Proxy), or #5597 (static-method delete).
built-ins/Object/defineProperty/15.2.3.6-4-278.js Expected obj[property] to be writable, but not
built-ins/Object/defineProperty/15.2.3.6-4-285.js
built-ins/Object/defineProperty/15.2.3.6-4-531-11.js Expected obj[prop] to be writable
built-ins/Object/defineProperties/15.2.3.7-6-a-267.js
built-ins/Object/defineProperties/15.2.3.7-6-a-274.js (… 15 total, -267/-268/-274..-277, -278/-279/-285..-288, -531-11/-540-7/-547-3)
2. RegExp unicode-mode restricted escapes — #5594 over-relaxed (2)
#5594 made Annex B legacy escapes (\1 decimal, \c control) valid — but they must still throw SyntaxError under the /u (and /v) flag. The unicode-mode strictness was lost.
built-ins/RegExp/unicode_restricted_octal_escape.js RegExp("\1","u"): Expected a SyntaxError to be thrown
built-ins/RegExp/unicode_restricted_identity_escape_c.js Expected a SyntaxError to be thrown
3. TypedArray speciesctor — silent (no output) (4)
%TypedArray%.prototype species-constructor path: a throwing species ctor / callback now produces no output (silent early exit or swallowed throw).
built-ins/TypedArray/prototype/slice/speciesctor-get-ctor-returns-throws.js
built-ins/TypedArray/prototype/map/speciesctor-get-ctor-returns-throws.js
built-ins/TypedArray/prototype/subarray/speciesctor-get-ctor-returns-throws.js
built-ins/TypedArray/prototype/every/returns-true-if-every-cb-returns-true.js
Plus misc: Array.prototype.copyWithin coerced-values, Collator phonebook ordering, DateTimeFormat calendar fallback, an optional-chaining missed-negative.
Measure
scripts/test262_subset.py --root /root/test262 --dir built-ins language intl402 annexB --jobs 6
on the internal Linux sweep host. Reproduce the set by diffing the .failures.txt sidecar against the prior known-good sweep.
Separate from the ~179 residual #5579 eval-code/indirect + annexB-global-eval cases (tracked on #5579) — those were already failing before this batch; the 26 here are net-new.
Severity: MEDIUM (fix-batch regressions)
The 2026-06-24 re-measure (main @
911a97948, node v26.3.0) shows the #5579 fix batch recovered the big regression clusters (overall 90.7% → 93.3%) but introduced 26 fresh test262 failures that passed on the prior run (sweep-0623). Three concrete sub-clusters:1.
Object.defineProperty/defineProperties— "property should be writable" (15)A property defined with
{writable:true}(or default) now reports non-writable. Suspect: #5574 (ownvalueOfwins in member dispatch), #5588 (Object.assign Proxy), or #5597 (static-method delete).2. RegExp unicode-mode restricted escapes — #5594 over-relaxed (2)
#5594 made Annex B legacy escapes (
\1decimal,\ccontrol) valid — but they must still throwSyntaxErrorunder the/u(and/v) flag. The unicode-mode strictness was lost.3. TypedArray
speciesctor— silent (no output) (4)%TypedArray%.prototypespecies-constructor path: a throwing species ctor / callback now produces no output (silent early exit or swallowed throw).Plus misc:
Array.prototype.copyWithincoerced-values,Collatorphonebook ordering,DateTimeFormatcalendar fallback, anoptional-chainingmissed-negative.Measure
on the internal Linux sweep host. Reproduce the set by diffing the
.failures.txtsidecar against the prior known-good sweep.Separate from the ~179 residual #5579 eval-code/indirect + annexB-global-eval cases (tracked on #5579) — those were already failing before this batch; the 26 here are net-new.