Sign in
webkit
/
WebKit
/
b387ed984cfa86e07321d6d915fc6d801afbcecc
/
.
/
JSTests
/
microbenchmarks
/
simple-regexp-test-folding-with-hoisted-regexp.js
blob: 960b21df77096446963280da5ee6be64ff0414fc [
file
] [
log
] [
blame
]
(
function
()
{
for
(
var
j
=
0
;
j
<
10
;
++
j
)
{
(
function
()
{
var
regExp
=
/foo/
;
for
(
var
i
=
0
;
i
<
100000
;
++
i
)
regExp
.
test
(
"foo"
);
})();
}
})();