Sign in
chromium
/
external
/
github.com
/
WebKit
/
webkit
/
refs/heads/main
/
.
/
JSTests
/
stress
/
loop-osr-with-inlined-create-rest.js
blob: b37e114f295962f61bf083b3eb3db8aba00b40ba [
file
] [
edit
]
//@ $skipModes << :lockdown if $buildType == "debug"
function
bar
(...
a
)
{
return
a
;
}
function
foo
(...
a
)
{
let x
=
bar
([]);
let
[]
=
a
;
return
bar
(...
x
);
}
for
(
let i
=
0
;
i
<
10000000
;
i
++)
{
foo
();
}