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
Sorbet declares unreachable else-clauses using a call to T.absurd. This is necessary for sorbet to actually verify all possible types or values have been already checked.
We need to be able to skip the mutations that remove the else branch when it's content is a call to T.absurd, because most of the times there is no practical way to reach it in tests.
caseelem# say this is T.any(Integer, String)whenIntegerthensomewhenStringthensome_otherelseT.absurd(elem)end
The text was updated successfully, but these errors were encountered:
Sorbet declares unreachable
else
-clauses using a call toT.absurd
. This is necessary for sorbet to actually verify all possible types or values have been already checked.We need to be able to skip the mutations that remove the else branch when it's content is a call to
T.absurd
, because most of the times there is no practical way to reach it in tests.The text was updated successfully, but these errors were encountered: