git://git.webkit.org
/
WebKit-https.git
/ blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
|
commitdiff
|
tree
history
|
raw
|
HEAD
[DFG] Drop unknown use of CheckCell's child2 to work ObjectAllocationSinking for...
[WebKit-https.git]
/
JSTests
/
microbenchmarks
/
for-of-array.js
1
var data = [1,2,3,4,5,6,7,8,9,10];
2
3
function fn() {
4
var ret = '';
5
for (var value of data)
6
ret += value;
7
return ret;
8
}
9
noInline(fn);
10
11
for (var i = 0; i < 1e5; ++i)
12
fn();