test262-automation de9e5de953 [javascriptcore-test262-automation] Updated curation log with latest revision sha's from export and changed files.
sourceRevisionAtLastExport: 205489c4f0 targetRevisionAtLastExport: cab19d71a6
2018-12-10 19:17:47 +00:00

21 lines
374 B
JavaScript

//@ runBigIntEnabled
function assert(a, e) {
if (a !== e) {
throw new Error("Bad!");
}
}
function logicalOr(a, b) {
return a || b;
}
noInline(logicalOr);
for (let i = 0; i < 100000; i++) {
assert(logicalOr(10n, "abc"), 10n);
assert(logicalOr(1n, "abc"), 1n);
assert(logicalOr(0n, "abc"), "abc");
assert(logicalOr(-1n, "abc"), -1n);
}