git://git.webkit.org
/
WebKit-https.git
/ blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
|
commitdiff
|
tree
history
|
raw
|
HEAD
[JSC] Implement String.prototype.concat in JS builtins
[WebKit-https.git]
/
JSTests
/
microbenchmarks
/
string-concat-convert.js
1
function test(a, b, c, d, e)
2
{
3
return a.concat(b).concat(c).concat(d).concat(e);
4
}
5
noInline(test);
6
7
for (var i = 0; i < 1e6; ++i)
8
test(new String("Cocoa"), new String("Cappuccino"), new String("Matcha"), new String("Rize"), new String("Kilimanjaro"));