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
/
build-large-object.js
blob
e44419ab4906afd8e3b93eae59ba6e2a788d1b8d
1
var g;
2
(function() {
3
for (var i = 0; i < 1000000; ++i) {
4
var o = {}
5
o.a = 0;
6
o.b = 1;
7
o.c = 2;
8
o.d = 3;
9
o.e = 4;
10
o.f = 5;
11
o.g = 6;
12
o.h = 7;
13
o.i = 8;
14
o.j = 9;
15
o.k = 10;
16
o.l = 11;
17
o.m = 12;
18
o.n = 13;
19
o.o = 14;
20
o.p = 15;
21
o.q = 0;
22
o.r = 1;
23
o.s = 2;
24
o.t = 3;
25
o.u = 4;
26
o.v = 5;
27
o.w = 6;
28
o.x = 7;
29
o.y = 8;
30
o.z = 9;
31
g = o;
32
}
33
return g;
34
})();