mirror of
https://github.com/swc-project/swc.git
synced 2025-01-02 02:26:09 +03:00
c6b22c57f8
Co-authored-by: Fábio Santos <fabiosantosart@gmail.com>
24 lines
381 B
JavaScript
24 lines
381 B
JavaScript
(async function () {
|
|
return await 3;
|
|
})();
|
|
(async function (x) {
|
|
await console.log(x);
|
|
})(4);
|
|
function invoke(x, y) {
|
|
return x(y);
|
|
}
|
|
invoke(async function () {
|
|
return await 1;
|
|
});
|
|
invoke(async function (x) {
|
|
await console.log(x);
|
|
}, 2);
|
|
function top() {
|
|
console.log("top");
|
|
}
|
|
top();
|
|
async function async_top() {
|
|
console.log("async_top");
|
|
}
|
|
async_top();
|