mirror of
https://github.com/swc-project/swc.git
synced 2025-01-02 02:26:09 +03:00
ef6a745599
swc_ecma_minifier: - Implement `evaluate` partially. - Store 'expected output' from terser along with our result. swc_ecma_transforms_base: - `fixer`: Don't wrap `+ (a % b)`. swc_ecma_transforms_optimization: - `expr_simplifier`: Preserve this in calls.
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");
|
|
})();
|