blob: d1b0c699714754b6bfd9c1b60a10902f40125b3b (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
|
<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
<title>qooxdoo » Demo</title>
<link type="text/css" rel="stylesheet" href="../../resource/css/layout.css"/>
<!--[if IE]>
<link type="text/css" rel="stylesheet" href="../../resource/css/layout_ie.css"/>
<![endif]-->
<script type="text/javascript" src="../../script/qx.js"></script>
</head>
<body>
<script type="text/javascript" src="../../script/layout.js"></script>
<div id="demoDescription">
<p>Tests for empty Object creation performance</p>
<ol>
<li>Using "{}"</li>
<li>Using "new Object"</li>
<li>Using "new Object()"</li>
</ol>
</div>
<script type="text/javascript">
qx.core.Init.getInstance().defineMain(function()
{
function ObjectCreate1(vLoops)
{
var foo;
for (var i=0; i<vLoops; i++) {
foo = {};
};
};
function ObjectCreate2(vLoops)
{
var foo;
for (var i=0; i<vLoops; i++) {
foo = new Object;
};
};
function ObjectCreate3(vLoops)
{
var foo;
for (var i=0; i<vLoops; i++) {
foo = new Object();
};
};
new qx.dev.TimeTracker(ObjectCreate1, ObjectCreate2, ObjectCreate3);
});
</script>
</body>
</html>
|