Sign in
chromium
/
external
/
github.com
/
WebKit
/
webkit
/
refs/heads/main
/
.
/
JSTests
/
microbenchmarks
/
call-varargs-null.js
blob: d04c9ecbc3f9e3d199d27e87e12c4c63692707e1 [
file
] [
log
] [
blame
] [
edit
]
function
test2
()
{
}
function
test
(
input
)
{
return
test2
.
apply
(
null
,
input
);
}
noInline
(
test
);
for
(
var
i
=
0
;
i
<
1e6
;
++
i
)
test
(
null
);