Sign in
webkit
/
WebKit
/
eed77a11249751f1b57a22699bda54381a2f6123
/
.
/
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
();
}