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