Sign in
webkit
/
WebKit
/
7d815df5a5eb5a0a67d72260d5639681d50d7f66
/
.
/
JSTests
/
microbenchmarks
/
eval-cached.js
blob: 00449a6d2b641c9178ccdbbfe66460e334687c7e [
file
] [
log
] [
blame
]
function
foo
(
string
)
{
let result
=
42
;
for
(
let i
=
0
;
i
<
1000
;
++
i
)
eval
(
string
);
return
result
;
}
noInline
(
foo
);
for
(
let i
=
0
;
i
<
200
;
++
i
)
{
let result
=
foo
(
"++result"
);
if
(
result
!=
42
+
1000
)
throw
"Error: bad result: "
+
result
;
}