repo.or.cz
/
qtwebkit.git
/
blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
log
|
graphiclog1
|
graphiclog2
|
commit
|
commitdiff
|
tree
|
refs
|
edit
|
fork
history
|
raw
|
HEAD
Update ReadMe.md
[qtwebkit.git]
/
JSTests
/
microbenchmarks
/
new-array-dead.js
blob
12f6366e491f04533ae5137288630efb2942ebf5
1
function foo() {
2
return new Array();
3
}
4
5
function bar() {
6
for (var i = 0; i < 10000000; ++i)
7
foo();
8
}
9
10
bar();
11
12