Sign in
chromium
/
external
/
github.com
/
WebKit
/
webkit
/
refs/heads/main
/
.
/
JSTests
/
stress
/
catch-clause-should-be-under-tdz5.js
blob: 02462bc13f5132cfc29dd7c7be39c1f1146c6e1c [
file
] [
edit
]
// This test should not crash.
var
caughtReferenceError
=
false
;
try
{
while
(
1
)
try
{
throw
{}}
catch
({
a
=({}={
__proto__
}),
__proto__
}){}
}
catch
(
e
)
{
caughtReferenceError
=
true
;
}
if
(!
caughtReferenceError
)
throw
Error
(
"Missing ReferenceError"
);