Sign in
webkit
/
WebKit
/
1c97ffdd9cbf91dfabac997fb744beb61286aea1
/
.
/
JSTests
/
microbenchmarks
/
string-concat.js
blob: 920abdbb88d9c8c9b0fc89f6377969c04f4437c1 [
file
] [
log
] [
blame
]
function
test
(
a
,
b
,
c
,
d
,
e
)
{
return
a
.
concat
(
b
).
concat
(
c
).
concat
(
d
).
concat
(
e
);
}
noInline
(
test
);
for
(
var
i
=
0
;
i
<
1e6
;
++
i
)
test
(
"Cocoa"
,
"Cappuccino"
,
"Matcha"
,
"Rize"
,
"Kilimanjaro"
);