Sign in
webkit
/
WebKit
/
b387ed984cfa86e07321d6d915fc6d801afbcecc
/
.
/
JSTests
/
microbenchmarks
/
regexp-last-index.js
blob: 977b92d8e2b6d816422ca557605feabead1e96ba [
file
] [
log
] [
blame
]
(
function
()
{
var
re
=
/foo/
g
;
re
.
exec
(
"bar foo bar"
);
var
result
=
0
;
var
n
=
10000000
;
for
(
var
i
=
0
;
i
<
n
;
++
i
)
result
+=
re
.
lastIndex
;
if
(
result
!=
7
*
n
)
throw
"Error: bad result: "
+
result
;
})();