Sign in
webkit
/
WebKit
/
14cb98a360e661c1b39a648e8ccc3be2e2757789
/
.
/
JSTests
/
stress
/
multi-del-by-offset-doesnt-always-def.js
blob: c951881b3608e58e4a384067cdd2f257dfc65555 [
file
] [
log
] [
blame
]
let p
=
{
get
:
undefined
,
set
:
undefined
,
};
let o1
=
{};
Object
.
defineProperty
(
o1
,
'x'
,
p
);
function
foo
(
o
)
{
if
(!(
delete
o
.
x
))
o
.
x
;
}
noInline
(
foo
);
for
(
let i
=
0
;
i
<
10000
;
++
i
)
{
foo
(
o1
);
foo
({
x
:
42
});
}