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
Surfaced in #469. Desugarer should throw an error that is processed via the normal error processing.
privatedefflattenTuples(ex: TlaEx):Seq[TlaEx] = ex match {
caseOperEx(TlaFunOper.tuple, args @ _*) =>
args.map(flattenTuples).reduce(_ ++ _)
caseNameEx(_) =>Seq(ex)
case _ =>thrownewIllegalArgumentException("Expected a variable or a tuple of variables, found: "+ ex)
}
The text was updated successfully, but these errors were encountered:
Surfaced in #469. Desugarer should throw an error that is processed via the normal error processing.
The text was updated successfully, but these errors were encountered: