Sign in
webkit
/
WebKit
/
7c2d2b06cff0bde1c85f11402729e2b90317522d
/
.
/
JSTests
/
stress
/
multi-delete-by-offset-ai-result.js
blob: db4505fd89e1047de567b5cfe087869c806c45c2 [
file
] [
log
] [
blame
]
//@ runDefault("--validateAbstractInterpreterState=1")
function
foo
(
obj
)
{
return
delete
obj
[
'x'
];
}
noInline
(
foo
);
let o
=
{};
for
(
let i
=
0
;
i
<
10000
;
++
i
)
{
Object
.
defineProperty
(
o
,
'x'
,
{});
foo
({});
foo
({
x
:
1
});
}