mirror of
https://github.com/swc-project/swc.git
synced 2025-01-05 12:03:47 +03:00
12 lines
117 B
JavaScript
12 lines
117 B
JavaScript
|
x = {
|
||
|
foo(a, b) {
|
||
|
return x;
|
||
|
},
|
||
|
};
|
||
|
y = {
|
||
|
foo([{ a }]) {
|
||
|
return a;
|
||
|
},
|
||
|
bar() {},
|
||
|
};
|