Sign in
webkit
/
WebKit
/
3e99eafa6bc5f50c29b187c8f33e3b2194fbadae
/
.
/
JSTests
/
microbenchmarks
/
regexp-set-last-index.js
blob: 16685844df9c4dac4328915fc1a75788b0853fab [
file
] [
log
] [
blame
]
(
function
()
{
var
re
=
/foo/
g
;
var
n
=
10000000
;
for
(
var
i
=
0
;
i
<
n
;
++
i
)
re
.
lastIndex
=
5
;
re
.
exec
(
"foo bar foo"
);
if
(
re
.
lastIndex
!=
"foo bar foo"
.
length
)
throw
"Error: bad value of lastIndx: "
+
re
.
lastIndex
;
})();