Sign in
webkit
/
WebKit
/
8903dd42b5c8ca8812f8019c0337a8d5abf20bc4
/
.
/
PerformanceTests
/
JetStream2
/
LuaJSFight
/
lists.js
blob: 8300ae4283e1a4c838b18c0bdada33d566e43dc2 [
file
] [
log
] [
blame
]
var
n
=
40000
;
var
i
=
0
;
var
items
=
[];
function
run
()
{
items
=
[];
while
(
i
<
n
)
{
items
.
push
(
i
);
i
=
i
+
1
;
}
}
class
Benchmark
{
runIteration
()
{
run
();
}
}