mirror of
https://github.com/swc-project/swc.git
synced 2025-01-04 19:47:10 +03:00
20 lines
329 B
JavaScript
20 lines
329 B
JavaScript
|
!(async function () {
|
||
|
await 3;
|
||
|
})();
|
||
|
!(async function (x) {
|
||
|
await console.log(4);
|
||
|
})();
|
||
|
function invoke(x, y) {
|
||
|
return x(y);
|
||
|
}
|
||
|
invoke(async function () {
|
||
|
return await 1;
|
||
|
});
|
||
|
invoke(async function (x) {
|
||
|
await console.log(x);
|
||
|
}, 2);
|
||
|
console.log("top");
|
||
|
!(async function () {
|
||
|
console.log("async_top");
|
||
|
})();
|