mirror of
https://github.com/swc-project/swc.git
synced 2024-12-25 06:36:08 +03:00
c6b22c57f8
Co-authored-by: Fábio Santos <fabiosantosart@gmail.com>
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");
|
|
})();
|