Sign in
webkit
/
WebKit
/
523a9f95bd9c6f8396f1eaddbcea48b4b236200c
/
.
/
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
();
}
}