Sign in
webkit
/
WebKit
/
11eb14dbd76d8d03d540dd8285a36f1a3b897832
/
.
/
JSTests
/
microbenchmarks
/
arguments.js
blob: f6ed1e0d2c46752eac60065422020542973d6252 [
file
] [
log
] [
blame
]
function
foo
()
{
return
arguments
[
0
];
}
noInline
(
foo
);
for
(
var
i
=
0
;
i
<
1000000
;
++
i
)
{
var
result
=
foo
(
i
);
if
(
result
!=
i
)
throw
"Error: bad result: "
+
result
;
}