Sign in
webkit
/
WebKit
/
fff5469af9e21121a01bc52b64d66a2e93b51665
/
.
/
JSTests
/
stress
/
other-is-object-or-null.js
blob: 81c0b0ae965ef62f61c15e1fd7c8d2b756e18e35 [
file
] [
log
] [
blame
]
function
foo
(
p
)
{
var
x
=
p
?
null
:
void
0
;
return
(
typeof
x
)
==
"object"
;
}
noInline
(
foo
);
for
(
var
i
=
0
;
i
<
10000
;
++
i
)
{
var
p
=
!!(
i
&
1
);
var
result
=
foo
(
p
);
if
(
result
!==
p
)
throw
"Error: bad result for p = "
+
p
+
": "
+
result
;
}