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/coercion/implicit_str_add.expected
Normal file
1
lib/js/test262-slice/coercion/implicit_str_add.expected
Normal file
@@ -0,0 +1 @@
|
||||
"n=42"
|
||||
1
lib/js/test262-slice/coercion/implicit_str_add.js
Normal file
1
lib/js/test262-slice/coercion/implicit_str_add.js
Normal file
@@ -0,0 +1 @@
|
||||
"n=" + 42
|
||||
1
lib/js/test262-slice/coercion/loose_str_num.expected
Normal file
1
lib/js/test262-slice/coercion/loose_str_num.expected
Normal file
@@ -0,0 +1 @@
|
||||
true
|
||||
1
lib/js/test262-slice/coercion/loose_str_num.js
Normal file
1
lib/js/test262-slice/coercion/loose_str_num.js
Normal file
@@ -0,0 +1 @@
|
||||
"5" == 5
|
||||
1
lib/js/test262-slice/coercion/typeof_bool.expected
Normal file
1
lib/js/test262-slice/coercion/typeof_bool.expected
Normal file
@@ -0,0 +1 @@
|
||||
"boolean"
|
||||
1
lib/js/test262-slice/coercion/typeof_bool.js
Normal file
1
lib/js/test262-slice/coercion/typeof_bool.js
Normal file
@@ -0,0 +1 @@
|
||||
typeof true
|
||||
1
lib/js/test262-slice/coercion/typeof_fn.expected
Normal file
1
lib/js/test262-slice/coercion/typeof_fn.expected
Normal file
@@ -0,0 +1 @@
|
||||
"function"
|
||||
1
lib/js/test262-slice/coercion/typeof_fn.js
Normal file
1
lib/js/test262-slice/coercion/typeof_fn.js
Normal file
@@ -0,0 +1 @@
|
||||
typeof (x => x)
|
||||
1
lib/js/test262-slice/coercion/typeof_null.expected
Normal file
1
lib/js/test262-slice/coercion/typeof_null.expected
Normal file
@@ -0,0 +1 @@
|
||||
"object"
|
||||
1
lib/js/test262-slice/coercion/typeof_null.js
Normal file
1
lib/js/test262-slice/coercion/typeof_null.js
Normal file
@@ -0,0 +1 @@
|
||||
typeof null
|
||||
1
lib/js/test262-slice/coercion/typeof_num.expected
Normal file
1
lib/js/test262-slice/coercion/typeof_num.expected
Normal file
@@ -0,0 +1 @@
|
||||
"number"
|
||||
1
lib/js/test262-slice/coercion/typeof_num.js
Normal file
1
lib/js/test262-slice/coercion/typeof_num.js
Normal file
@@ -0,0 +1 @@
|
||||
typeof 42
|
||||
1
lib/js/test262-slice/coercion/typeof_str.expected
Normal file
1
lib/js/test262-slice/coercion/typeof_str.expected
Normal file
@@ -0,0 +1 @@
|
||||
"string"
|
||||
1
lib/js/test262-slice/coercion/typeof_str.js
Normal file
1
lib/js/test262-slice/coercion/typeof_str.js
Normal file
@@ -0,0 +1 @@
|
||||
typeof "x"
|
||||
1
lib/js/test262-slice/coercion/typeof_undef.expected
Normal file
1
lib/js/test262-slice/coercion/typeof_undef.expected
Normal file
@@ -0,0 +1 @@
|
||||
"undefined"
|
||||
1
lib/js/test262-slice/coercion/typeof_undef.js
Normal file
1
lib/js/test262-slice/coercion/typeof_undef.js
Normal file
@@ -0,0 +1 @@
|
||||
typeof undefined
|
||||
Reference in New Issue
Block a user