Sign in
webkit
/
WebKit
/
9f8388ebdf099a98ce75d93c131e5941dc4da269
/
.
/
JSTests
/
stress
/
use-arguments-as-object-pointer.js
blob: c9d24c125a308667d519dbdad71fb85378190538 [
file
] [
log
] [
blame
]
function
foo
()
{
arguments
=
{
f
:
42
};
return
arguments
.
f
;
}
noInline
(
foo
);
for
(
var
i
=
0
;
i
<
100000
;
++
i
)
{
var
result
=
foo
();
if
(
result
!=
42
)
throw
"Error: bad result: "
+
result
;
}