Sign in
webkit
/
WebKit
/
73d489c153bea24ba07ff63ba8b8ea61cc2bba7a
/
.
/
JSTests
/
microbenchmarks
/
function-dot-apply-array-literal.js
blob: d43deb3fe5382e4da2084da65b5941ec13634238 [
file
] [
log
] [
blame
]
function
fn
()
{}
noInline
(
Function
.
prototype
.
apply
);
for
(
var
i
=
0
;
i
<
1e7
;
++
i
)
{
fn
.
apply
(
null
,
[]);
fn
.
apply
(
null
,
[
1
,]);
fn
.
apply
(
null
,
[
1
,
2
,]);
}