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