Sign in
webkit
/
WebKit
/
8811b522c4d9fd9fbebc2e2caf8f1ebff78163f9
/
.
/
JSTests
/
es6
/
destructuring_in_catch_heads.js
blob: 6468ed76e851daaa99d4ba8ea7811191fe2f1025 [
file
] [
log
] [
blame
]
function
test
()
{
try
{
throw
[
1
,
2
];
}
catch
([
i
,
j
])
{
try
{
throw
{
k
:
3
,
l
:
4
};
}
catch
({
k
,
l
})
{
return
i
===
1
&&
j
===
2
&&
k
===
3
&&
l
===
4
;
}
}
}
if
(!
test
())
throw
new
Error
(
"Test failed"
);