Sign in
chromium
/
external
/
github.com
/
WebKit
/
webkit
/
b23bfe44916eca6ef0411123d66109eecdc98e83
/
.
/
LayoutTests
/
js
/
script-tests
/
dfg-arrayify-when-prevent-extensions.js
blob: de0199d7c09791dd8f3aad409fe7f581f7623d7a [
file
]
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"
);