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