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
Given a binary operator where one of the operands has type nothing (i.e., it has a type error), then the resulting type of a logical binary operator should still be a boolean. Right now it is nothing as well.
Example:
myList filter 42 = thisSymbolDoesNotExists
This one confusingly results in an error on the filter operation, since its body is not of type boolean, but of type nothing.
The text was updated successfully, but these errors were encountered:
Given a binary operator where one of the operands has type
nothing
(i.e., it has a type error), then the resulting type of a logical binary operator should still be aboolean
. Right now it isnothing
as well.Example:
This one confusingly results in an error on the filter operation, since its body is not of type
boolean
, but of typenothing
.The text was updated successfully, but these errors were encountered: