Sign in
webkit
/
WebKit
/
3ee83bd7079b5d32a56631e7e3c8cee2e6830703
/
.
/
JSTests
/
stress
/
operationInstanceOfCustom-bad-assertion.js
blob: 919ffaea35fb128968c54ba823a3cea3551b286f [
file
] [
log
] [
blame
]
const
x
=
createGlobalObject
();
function
foo
(
resolve
)
{
0
instanceof resolve
;
}
noInline
(
x
.
Promise
);
for
(
let i
=
0
;
i
<
1000
;
i
++)
{
new
x
.
Promise
(
foo
);
}