Sign in
webkit
/
WebKit
/
69084d7b0eae184a8076d683d5feee69bc80ce44
/
.
/
JSTests
/
stress
/
property-name-enumerator-should-cache-structure-after-getting-property-names.js
blob: 27c4192e273b6dd93f3e29c0fbe13dc6c4a81923 [
file
] [
log
] [
blame
]
function
foo
(){
o
=
Error
();
for
(
var
s in o
)
{
o
[
s
];
o
=
Error
();
}
}
noInline
(
foo
);
for
(
var
i
=
0
;
i
<
100
;
i
++)
foo
();