Sign in
chromium
/
external
/
github.com
/
WebKit
/
webkit
/
refs/heads/main
/
.
/
JSTests
/
microbenchmarks
/
string-repeat-rope-not-resolving.js
blob: 608001fa93a9dff0cd2ccb01fe1357da56fae631 [
file
] [
edit
]
function
test
(
str
,
count
)
{
return
str
.
repeat
(
count
);
}
noInline
(
test
);
let a
=
"a"
.
repeat
(
50000
);
let b
=
"b"
.
repeat
(
50000
);
for
(
let i
=
0
;
i
<
1e4
;
++
i
)
test
(
a
+
b
,
2
);