Sign in
webkit
/
WebKit
/
e27614df2f37ba9cd62de8344bb8d5b7377411af
/
.
/
JSTests
/
microbenchmarks
/
string-replace-generic.js
blob: f4e1a936c1c72e7a1ed53b3770335feb023d29af [
file
] [
log
] [
blame
]
(
function
()
{
var
result
;
for
(
var
i
=
0
;
i
<
400000
;
++
i
)
{
result
=
"foo"
.
replace
(
/f/
g
,
42
);
}
if
(
result
!=
"42oo"
)
throw
"Error: bad result: "
+
result
;
})();