blob: 9e5a569e13ecc2990056cfb0ceaf1c720dcb4a08 [file] [log] [blame]
function shouldBe(expected, actual, msg = "") {
if (msg)
msg = " for " + msg;
if (actual !== expected)
throw new Error("bad value" + msg + ": " + actual + ". Expected " + expected);
}
function shouldBeAsync(expected, promise, msg) {
let actual;
var hadError = false;
promise.then(function(value) { actual = value; },
function(error) { hadError = true; actual = error; });
drainMicrotasks();
if (hadError)
throw actual;
shouldBe(expected, actual, msg);
}
var AsyncFunctionPrototype = async function(){}.__proto__;
function sink (p, q) {
async function g(x) { return x; };
if (p) { if (q) OSRExit(); return g; }
async function f(x) { return x; };
return f;
}
noInline(sink);
for (var i = 0; i < 10000; ++i) {
var f = sink(true, false);
shouldBe(f.__proto__, AsyncFunctionPrototype);
shouldBeAsync(42, f(42));
}
// At this point, the function should be compiled down to the FTL
// Check that the function is properly allocated on OSR exit
var f = sink(true, true);
shouldBe(f.__proto__, AsyncFunctionPrototype);
shouldBeAsync(42, f(42));