mirror of
https://github.com/swc-project/swc.git
synced 2024-11-24 10:12:42 +03:00
28 lines
246 B
TypeScript
28 lines
246 B
TypeScript
const { x } = {
|
|
...{},
|
|
x: 0
|
|
};
|
|
|
|
const { y } = {
|
|
y: 0,
|
|
...{}
|
|
};
|
|
|
|
const { z, a, b } = {
|
|
z: 0,
|
|
...{ a: 0, b: 0 }
|
|
};
|
|
|
|
const { c, d, e, f, g } = {
|
|
...{
|
|
...{
|
|
...{
|
|
c: 0,
|
|
},
|
|
d: 0
|
|
},
|
|
e: 0
|
|
},
|
|
f: 0
|
|
};
|