mirror of
https://github.com/swc-project/swc.git
synced 2024-12-22 13:11:31 +03:00
9 lines
176 B
JavaScript
9 lines
176 B
JavaScript
|
function f(a, b = 3) {
|
||
|
console.log(a);
|
||
|
}
|
||
|
g = ([[] = 123]) => {};
|
||
|
h = ([[x, y, z] = [4, 5, 6]] = []) => {};
|
||
|
function i([[x, y, z] = [4, 5, 6]] = []) {
|
||
|
console.log(b);
|
||
|
}
|