Sign in
webkit
/
WebKit
/
60c3f717a9141a0f8afd6e8437d26c6404e4424c
/
.
/
JSTests
/
stress
/
for-in-has-own-property-shouldnt-flush-registers.js
blob: 024d53b99d8fc45deb6c0670fca4b40e3b159301 [
file
] [
log
] [
blame
]
function
foo
(
o
)
{
for
(
let p in o
)
{
o
.
hasOwnProperty
(
p
);
o
.
__proto__
=
undefined
;
}
}
for
(
let i
=
0
;
i
<
100000
;
++
i
)
{
foo
({
f
:
42
});
}