mirror of
https://github.com/swc-project/swc.git
synced 2024-12-21 12:41:54 +03:00
c6b22c57f8
Co-authored-by: Fábio Santos <fabiosantosart@gmail.com>
10 lines
228 B
JavaScript
10 lines
228 B
JavaScript
let a1 = async (x) => await foo(x);
|
|
let a2 = async () => await bar();
|
|
let a3 = async (x) => await baz(x);
|
|
let a4 = async (x, y) => {
|
|
await far(x, y);
|
|
};
|
|
let a5 = async ({ x: x = [1], y: z = 2 }) => {
|
|
await wow(x, z);
|
|
};
|