You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Now we treat !foo as an elementary expression, i.e. we fix stuff like !(foo && bar) as !(A & B), but treat !foo && bar as A & B instead of !A & B.
Also we can support negating equals operator: !(x == null || y == null) -> x != null && y != null
The text was updated successfully, but these errors were encountered:
Now we treat
!foo
as an elementary expression, i.e. we fix stuff like!(foo && bar)
as!(A & B)
, but treat!foo && bar
asA & B
instead of!A & B
.Also we can support negating equals operator:
!(x == null || y == null)
->x != null && y != null
The text was updated successfully, but these errors were encountered: