js-on-sx: native prototypes carry wrapped primitive marker
Some checks failed
Test, Build, and Deploy / test-build-deploy (push) Failing after 32s

Per ES, Boolean.prototype is a Boolean wrapper around false,
Number.prototype wraps 0, String.prototype wraps "". So
Boolean.prototype == false (loose-eq unwraps), and
Object.prototype.toString.call(Number.prototype) ===
"[object Number]". Set __js_*_value__ on each in post-init.
built-ins/Boolean: 23/27 → 24/27, String: 80/99 → 84/99.
conformance.sh: 148/148.
This commit is contained in:
2026-05-08 11:27:18 +00:00
parent f03aa3056d
commit e97bdc4602
4 changed files with 57 additions and 32 deletions

View File

@@ -1,24 +1,28 @@
# test262 scoreboard
Pinned commit: `d5e73fc8d2c663554fb72e2380a8c2bc1a318a33`
Wall time: 90.4s
Wall time: 192.4s
**Total:** 46/50 runnable passed (92.0%). Raw: pass=46 fail=2 skip=0 timeout=2 total=50.
**Total:** 84/99 runnable passed (84.8%). Raw: pass=84 fail=12 skip=1 timeout=3 total=100.
## Top failure modes
- **2x** Timeout
- **2x** Test262Error (assertion failed)
- **10x** Test262Error (assertion failed)
- **3x** Timeout
- **1x** ReferenceError (undefined symbol)
- **1x** SyntaxError (parse/unsupported syntax)
## Categories (worst pass-rate first, min 10 runnable)
| Category | Pass | Fail | Skip | Timeout | Total | Pass % |
|---|---:|---:|---:|---:|---:|---:|
| built-ins/Number | 46 | 2 | 0 | 2 | 50 | 92.0% |
| built-ins/String | 84 | 12 | 1 | 3 | 100 | 84.8% |
## Per-category top failures (min 10 runnable, worst first)
### built-ins/Number (46/50 — 92.0%)
### built-ins/String (84/99 — 84.8%)
- **2x** Timeout
- **2x** Test262Error (assertion failed)
- **10x** Test262Error (assertion failed)
- **3x** Timeout
- **1x** ReferenceError (undefined symbol)
- **1x** SyntaxError (parse/unsupported syntax)