mirror of
https://github.com/swc-project/swc.git
synced 2024-12-30 17:15:11 +03:00
20 lines
260 B
JavaScript
20 lines
260 B
JavaScript
function test({ method ="z" , nested: { p ="c" } }) {
|
|
}
|
|
test({
|
|
}), test({
|
|
method: "x",
|
|
nested: {
|
|
p: "a"
|
|
}
|
|
}), test({
|
|
method: "z",
|
|
nested: {
|
|
p: "b"
|
|
}
|
|
}), test({
|
|
method: "one",
|
|
nested: {
|
|
p: "a"
|
|
}
|
|
});
|