Sign in
webkit
/
WebKit
/
d507f536e123365c4233f3083e0192532185e8fc
/
.
/
LayoutTests
/
js
/
script-tests
/
dfg-arguments-mutated-structure.js
blob: 3e8ba944cf7bef72753402add43e3d4841ad5c93 [
file
] [
log
] [
blame
]
description
(
"Tests effect of mutating Arguments object's structure."
);
function
foo
()
{
arguments
.
a
=
true
;
return
arguments
.
a
;
}
dfgShouldBe
(
foo
,
"foo()"
,
"true"
);