Sign in
webkit
/
WebKit
/
36168652e4948b4e847a9c1caf1fabcf1810968f
/
.
/
JSTests
/
stress
/
do-not-perform-bytecode-peephole-optimization-in-jump-target.js
blob: ef6c7329040bb9f9eff7da5dd3502643c588cf9f [
file
] [
log
] [
blame
]
function
shouldBe
(
actual
,
expected
)
{
if
(
actual
!==
expected
)
throw
new
Error
(
'bad value: '
+
actual
);
}
let a
=
(
1
||
typeof
1
)
===
'string'
;
shouldBe
(
a
,
false
);