Sign in
webkit
/
WebKit
/
14cb98a360e661c1b39a648e8ccc3be2e2757789
/
.
/
JSTests
/
stress
/
multi-del-by-offset-doesnt-always-def-osr-entry.js
blob: 9038fc2eabd5e8d26ef44e46a560edc01b9c123f [
file
] [
log
] [
blame
]
let p
=
{
get
:
undefined
,
set
:
undefined
,
};
function
foo
()
{
let o
=
{};
for
(
let i
=
0
;
i
<
100
;
i
++)
{
for
(
let j
=
0
;
j
<
5
;
j
++)
delete
o
.
x
;
o
.
x
;
Object
.
defineProperty
(
o
,
'x'
,
p
);
}
}
foo
()