Sign in
webkit
/
WebKit
/
36234e633907e0345e06a39a886b5b9fff0ba3fe
/
.
/
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
;
}