/external/v8/test/webkit/ |
dfg-to-string-bad-valueOf.js | 37 shouldBe("\"\" + foo(\"hello\")", "\"42\"");
|
dfg-to-string-int-or-string.js | 35 shouldBe("\"\" + foo(i % 2 ? 42 : \"hello\")", "i % 2 ? \"42\" : \"hello\"");
|
dfg-to-string-int.js | 35 shouldBe("\"\" + foo(42)", "\"42\"");
|
dfg-to-string-on-cell.js | 31 shouldBe("\"\" + foo(\"foo\", i % 2 ? \"hello\" : [1, 2, 3])", i % 2 ? "\"foo,hello\"" : "\"foo,1,2,3\"");
|
dfg-to-string-on-value.js | 31 shouldBe("\"\" + foo(\"foo\", i % 2 ? \"hello\" : 42)", i % 2 ? "\"foo,hello\"" : "\"foo,42\"");
|
dfg-to-string-side-effect-clobbers-toString.js | 39 shouldBe("foo(new String(\"hello\"), sideEffect)", i < 150 ? "\"hellohello\"" : "\"hello" + i + "\"");
|
dfg-to-string-side-effect.js | 35 shouldBe("\"\" + foo({toString:function() { debug(\"hello\"); return 42; }})", "\"42\"");
|
dfg-to-string-toString-becomes-bad-with-check-structure.js | 35 shouldBe("foo.call(new String(\"foo\"))", i >= 99 ? "\"42\"" : "\"foo\"");
|
dfg-to-string-toString-becomes-bad.js | 40 shouldBe("\"\" + foo(\"hello\")", expected);
|
dfg-to-string-toString-in-string.js | 42 shouldBe("\"\" + foo(argument)", expected);
|
dfg-to-string-valueOf-in-string.js | 40 shouldBe("\"\" + foo(argument)", "\"hello\"");
|
dfg-uint32-to-number-in-middle-of-copy-propagation.js | 37 shouldBe("foo(-1)", "[-1, 4294967295]");
|
dfg-uint32-to-number-on-captured-variable.js | 36 shouldBe("foo(" + i + ")()", "" + i);
|
dfg-uint32-to-number-skip-then-exit.js | 43 shouldBe("foo(i, 1, o)", "" + expected);
|
dfg-uint32array-overflow-constant.js | 36 shouldBe("array[0]", "0x8005465c");
|
dfg-uint8clampedarray-out-of-bounds-put-by-val-alias.js | 37 shouldBe("foo(array, 100000000, 42)", "" + (void 0));
|
enter-dictionary-indexing-mode-with-blank-indexing-type.js | 31 shouldBe("Object.isFrozen(Array.prototype)", "true");
|
exception-try-finally-scope-error.js | 39 (function () { try { throw ""; } finally { result = test; shouldBe("result", '"inner scope"'); return;}})()
|
/external/v8/test/webkit/fast/js/ |
Promise-exception.js | 39 shouldBe('thisInThenCallback', 'undefined');
|
Promise-resolve-with-then-fulfill.js | 34 shouldBe('thisValue', 'value');
|
Promise-resolve-with-then-reject.js | 34 shouldBe('thisValue', 'value');
|
Promise-resolve.js | 35 shouldBe('thisInOnFulfilled', 'undefined');
|
Promise-static-reject.js | 38 shouldBe('result', 'undefined');
|
Promise-static-resolve.js | 43 shouldBe('result', 'undefined');
|
array-float-delete.js | 32 shouldBe("a[1]", '"before"');
|