Sign in
webkit
/
WebKit
/
d5bc8626ff9394ad3cac4aff99be89e91a8d2265
/
.
/
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
();