Sign in
webkit
/
WebKit
/
14cb98a360e661c1b39a648e8ccc3be2e2757789
/
.
/
JSTests
/
stress
/
stack-overflow-into-frame-with-pending-checkpoint.js
blob: 734e72b1ca5fbc1757b5e6a131e198690133aa29 [
file
] [
log
] [
blame
]
//@ requireOptions("--jitPolicyScale=0")
function
foo
()
{
'use strict'
try
{
foo
();
}
catch
(
e
)
{
({
__proto__
:
0
});
async
function
bar
(
a0
)
{
bar
(
a0
,
...[
0
]);
}
for
(
let i
=
0
;
i
<
1000
;
i
++)
{
bar
();
}
bar
(
0
,
0
);
}
}
foo
();