js-on-sx: baseline commit (278/280 unit, 148/148 slice, runner stub)
Initial commit of the lib/js/ tree and plans/ directory. A previous session left template-string work in progress — 278/280 unit tests pass (2 failing: tpl part-count off-by-one, escaped-backtick ident lookup). test262-runner.py and scoreboard are placeholders (0/8 with 7 timeouts); fixing the runner is the next queue item.
This commit is contained in:
1
lib/js/test262-slice/logical/and_short_circuit.expected
Normal file
1
lib/js/test262-slice/logical/and_short_circuit.expected
Normal file
@@ -0,0 +1 @@
|
||||
0
|
||||
1
lib/js/test262-slice/logical/and_short_circuit.js
Normal file
1
lib/js/test262-slice/logical/and_short_circuit.js
Normal file
@@ -0,0 +1 @@
|
||||
0 && 5
|
||||
1
lib/js/test262-slice/logical/and_truthy.expected
Normal file
1
lib/js/test262-slice/logical/and_truthy.expected
Normal file
@@ -0,0 +1 @@
|
||||
2
|
||||
1
lib/js/test262-slice/logical/and_truthy.js
Normal file
1
lib/js/test262-slice/logical/and_truthy.js
Normal file
@@ -0,0 +1 @@
|
||||
1 && 2
|
||||
1
lib/js/test262-slice/logical/chain.expected
Normal file
1
lib/js/test262-slice/logical/chain.expected
Normal file
@@ -0,0 +1 @@
|
||||
true
|
||||
1
lib/js/test262-slice/logical/chain.js
Normal file
1
lib/js/test262-slice/logical/chain.js
Normal file
@@ -0,0 +1 @@
|
||||
true && false || true
|
||||
1
lib/js/test262-slice/logical/not_true.expected
Normal file
1
lib/js/test262-slice/logical/not_true.expected
Normal file
@@ -0,0 +1 @@
|
||||
false
|
||||
1
lib/js/test262-slice/logical/not_true.js
Normal file
1
lib/js/test262-slice/logical/not_true.js
Normal file
@@ -0,0 +1 @@
|
||||
!true
|
||||
1
lib/js/test262-slice/logical/not_zero.expected
Normal file
1
lib/js/test262-slice/logical/not_zero.expected
Normal file
@@ -0,0 +1 @@
|
||||
true
|
||||
1
lib/js/test262-slice/logical/not_zero.js
Normal file
1
lib/js/test262-slice/logical/not_zero.js
Normal file
@@ -0,0 +1 @@
|
||||
!0
|
||||
1
lib/js/test262-slice/logical/nullish_null.expected
Normal file
1
lib/js/test262-slice/logical/nullish_null.expected
Normal file
@@ -0,0 +1 @@
|
||||
7
|
||||
1
lib/js/test262-slice/logical/nullish_null.js
Normal file
1
lib/js/test262-slice/logical/nullish_null.js
Normal file
@@ -0,0 +1 @@
|
||||
null ?? 7
|
||||
1
lib/js/test262-slice/logical/nullish_undef.expected
Normal file
1
lib/js/test262-slice/logical/nullish_undef.expected
Normal file
@@ -0,0 +1 @@
|
||||
7
|
||||
1
lib/js/test262-slice/logical/nullish_undef.js
Normal file
1
lib/js/test262-slice/logical/nullish_undef.js
Normal file
@@ -0,0 +1 @@
|
||||
undefined ?? 7
|
||||
1
lib/js/test262-slice/logical/nullish_zero.expected
Normal file
1
lib/js/test262-slice/logical/nullish_zero.expected
Normal file
@@ -0,0 +1 @@
|
||||
0
|
||||
1
lib/js/test262-slice/logical/nullish_zero.js
Normal file
1
lib/js/test262-slice/logical/nullish_zero.js
Normal file
@@ -0,0 +1 @@
|
||||
0 ?? 7
|
||||
1
lib/js/test262-slice/logical/or_falsy.expected
Normal file
1
lib/js/test262-slice/logical/or_falsy.expected
Normal file
@@ -0,0 +1 @@
|
||||
5
|
||||
1
lib/js/test262-slice/logical/or_falsy.js
Normal file
1
lib/js/test262-slice/logical/or_falsy.js
Normal file
@@ -0,0 +1 @@
|
||||
false || 5
|
||||
1
lib/js/test262-slice/logical/or_truthy.expected
Normal file
1
lib/js/test262-slice/logical/or_truthy.expected
Normal file
@@ -0,0 +1 @@
|
||||
1
|
||||
1
lib/js/test262-slice/logical/or_truthy.js
Normal file
1
lib/js/test262-slice/logical/or_truthy.js
Normal file
@@ -0,0 +1 @@
|
||||
1 || 2
|
||||
1
lib/js/test262-slice/logical/or_zero.expected
Normal file
1
lib/js/test262-slice/logical/or_zero.expected
Normal file
@@ -0,0 +1 @@
|
||||
"x"
|
||||
1
lib/js/test262-slice/logical/or_zero.js
Normal file
1
lib/js/test262-slice/logical/or_zero.js
Normal file
@@ -0,0 +1 @@
|
||||
0 || "x"
|
||||
Reference in New Issue
Block a user