Sign in
webkit
/
WebKit
/
4ae349a8f8cbe5c18f6b8f2f24277ba5b8cf7e08
/
.
/
JSTests
/
microbenchmarks
/
string-repeat-single-not-resolving.js
blob: d846c6ca84e934c8eb92c96a1e64faf670079d90 [
file
] [
log
] [
blame
]
function
test
(
str
,
count
)
{
return
str
.
repeat
(
count
);
}
for
(
var
i
=
0
;
i
<
1e4
;
++
i
)
test
(
' '
,
i
);