blob: 2a4d5f8e0978e6bec1373fc724748d73dcfed770 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
|
// |reftest| skip-if(!xulRuntime.shell) -- needs clone, cloneAndExecuteScript, drainJobQueue
// Async function cannot be cloned.
assertThrowsInstanceOf(() => clone(async function f() {}), TypeError);
// unwrapped async function can be cloned.
let g = newGlobal();
cloneAndExecuteScript(`
async function f() {
var a = await 1;
var b = await 2;
var c = await 3;
return a + b + c;
}
var V;
f().then(v => V = v);
drainJobQueue();
`, g);
assertEq(g.V, 6);
if (typeof reportCompare === "function")
reportCompare(true, true);
|