Sign in
chromium
/
external
/
github.com
/
WebKit
/
webkit
/
refs/heads/main
/
.
/
JSTests
/
stress
/
dead-bytecode-local.js
blob: 9c91e4fe8f4abdc1025befd9a3e1bf28e86aadc1 [
file
] [
log
] [
blame
] [
edit
]
function
bar
()
{
return
;
hello
;
}
function
foo
()
{
let j
=
0
;
let x
=
bar
();
do
{}
while
(
j
++
<
1000
);
return
x
;
}
for
(
let i
=
0
;
i
<
1000
;
i
++)
{
foo
();
}