Sign in
webkit
/
WebKit
/
18eafb7225658eb078fb4b435c7e6f4bc55edf7a
/
.
/
JSTests
/
stress
/
osr-availability-should-see-unused-return-as-available.js
blob: d19c7578724c8540c43eae4c8f74afab441ed799 [
file
] [
log
] [
blame
]
const
z
=
{};
Object
.
defineProperty
(
z
,
'xxx'
,
{
set
:
isFinite
});
function
foo
()
{
z
.
xxx
=
undefined
;
}
noInline
(
foo
);
for
(
let i
=
0
;
i
<
10000
;
i
++)
{
foo
();
}