Sign in
webkit
/
WebKit
/
9f8388ebdf099a98ce75d93c131e5941dc4da269
/
.
/
JSTests
/
stress
/
create-promise-weak-pointer.js
blob: 29d9b8c4c1aa89cde1f32d692e3b4d81bfc40334 [
file
] [
log
] [
blame
]
const
x
=
new
Proxy
(
Promise
,
{});
function
foo
()
{
new
x
(()=>{});
}
for
(
let i
=
0
;
i
<
100000
;
i
++)
{
foo
();
}