js-on-sx: native prototypes carry wrapped primitive marker
Some checks failed
Test, Build, and Deploy / test-build-deploy (push) Failing after 32s
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:
@@ -1,45 +1,61 @@
|
||||
{
|
||||
"totals": {
|
||||
"pass": 46,
|
||||
"fail": 2,
|
||||
"skip": 0,
|
||||
"timeout": 2,
|
||||
"total": 50,
|
||||
"runnable": 50,
|
||||
"pass_rate": 92.0
|
||||
"pass": 84,
|
||||
"fail": 12,
|
||||
"skip": 1,
|
||||
"timeout": 3,
|
||||
"total": 100,
|
||||
"runnable": 99,
|
||||
"pass_rate": 84.8
|
||||
},
|
||||
"categories": [
|
||||
{
|
||||
"category": "built-ins/Number",
|
||||
"total": 50,
|
||||
"pass": 46,
|
||||
"fail": 2,
|
||||
"skip": 0,
|
||||
"timeout": 2,
|
||||
"pass_rate": 92.0,
|
||||
"category": "built-ins/String",
|
||||
"total": 100,
|
||||
"pass": 84,
|
||||
"fail": 12,
|
||||
"skip": 1,
|
||||
"timeout": 3,
|
||||
"pass_rate": 84.8,
|
||||
"top_failures": [
|
||||
[
|
||||
"Timeout",
|
||||
2
|
||||
"Test262Error (assertion failed)",
|
||||
10
|
||||
],
|
||||
[
|
||||
"Test262Error (assertion failed)",
|
||||
2
|
||||
"Timeout",
|
||||
3
|
||||
],
|
||||
[
|
||||
"ReferenceError (undefined symbol)",
|
||||
1
|
||||
],
|
||||
[
|
||||
"SyntaxError (parse/unsupported syntax)",
|
||||
1
|
||||
]
|
||||
]
|
||||
}
|
||||
],
|
||||
"top_failure_modes": [
|
||||
[
|
||||
"Timeout",
|
||||
2
|
||||
"Test262Error (assertion failed)",
|
||||
10
|
||||
],
|
||||
[
|
||||
"Test262Error (assertion failed)",
|
||||
2
|
||||
"Timeout",
|
||||
3
|
||||
],
|
||||
[
|
||||
"ReferenceError (undefined symbol)",
|
||||
1
|
||||
],
|
||||
[
|
||||
"SyntaxError (parse/unsupported syntax)",
|
||||
1
|
||||
]
|
||||
],
|
||||
"pinned_commit": "d5e73fc8d2c663554fb72e2380a8c2bc1a318a33",
|
||||
"elapsed_seconds": 90.4,
|
||||
"elapsed_seconds": 192.4,
|
||||
"workers": 1
|
||||
}
|
||||
Reference in New Issue
Block a user