Sign in
webkit
/
WebKit
/
b387ed984cfa86e07321d6d915fc6d801afbcecc
/
.
/
LayoutTests
/
js
/
script-tests
/
dfg-arrayify-when-prevent-extensions.js
blob: de0199d7c09791dd8f3aad409fe7f581f7623d7a [
file
] [
log
] [
blame
]
description
(
"Tests that Arraify does good things when Object.preventExtensions() has been called."
);
function
foo
(
o
)
{
o
[
0
]
=
42
;
return
o
[
0
];
}
dfgShouldBe
(
foo
,
"var o = {}; Object.preventExtensions(o); foo(o)"
,
"void 0"
);