Sign in
webkit
/
WebKit
/
14cb98a360e661c1b39a648e8ccc3be2e2757789
/
.
/
JSTests
/
stress
/
compare-strict-eq-string-check.js
blob: 69a4dd3faf60a04b14a7cb982bdc266651a1cef9 [
file
] [
log
] [
blame
]
function
foo
()
{}
function
bar
(
a0
,
a1
)
{
a0 instanceof foo
;
a0
===
a1
;
}
for
(
let i
=
0
;
i
<
100000
;
i
++)
{
bar
({});
bar
(
1n
,
''
);
}