Sign in
webkit
/
WebKit
/
73d489c153bea24ba07ff63ba8b8ea61cc2bba7a
/
.
/
JSTests
/
microbenchmarks
/
simple-regexp-test-folding-fail-with-hoisted-regexp.js
blob: c0c6300d0d65ee9c02d054e3ae779f63cb99c8bc [
file
] [
log
] [
blame
]
//@ skip if $model == "Apple Watch Series 3" # added by mark-jsc-stress-test.py
(
function
()
{
for
(
var
j
=
0
;
j
<
10
;
++
j
)
{
(
function
()
{
var
regExp
=
/foo/
;
for
(
var
i
=
0
;
i
<
100000
;
++
i
)
regExp
.
test
(
"bar"
);
})();
}
})();