We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 25c2021 commit 5195d70Copy full SHA for 5195d70
compiler/src/main/scala/org/scalajs/nscplugin/GenJSCode.scala
@@ -6850,7 +6850,7 @@ abstract class GenJSCode[G <: Global with Singleton](val global: G)
6850
dummy
6851
6852
// !x
6853
- case Apply(Select(t, nme.UNARY_!), Nil) =>
+ case Apply(Select(t, nme.UNARY_!), Nil) if cond.symbol == definitions.Boolean_not =>
6854
val lt = genLinkTimeTree(t)
6855
js.LinkTimeTree.BinaryOp(Boolean_==, lt, js.LinkTimeTree.BooleanConst(false))
6856
0 commit comments