diff options
Diffstat (limited to 'js/src/tests/non262/async-functions/clone.js')
-rw-r--r-- | js/src/tests/non262/async-functions/clone.js | 19 |
1 files changed, 19 insertions, 0 deletions
diff --git a/js/src/tests/non262/async-functions/clone.js b/js/src/tests/non262/async-functions/clone.js new file mode 100644 index 0000000000..42d4b883df --- /dev/null +++ b/js/src/tests/non262/async-functions/clone.js @@ -0,0 +1,19 @@ +// |reftest| skip-if(!xulRuntime.shell) -- needs cloneAndExecuteScript, drainJobQueue + +// Async function source code scripts 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); |