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
The commit which removed EIf causes this error in MUnit:
HaxeToolkit\haxe\lib\mcover/2,1,1/mcover/macro/ClassParser.hx:353: characters 9-12 : Identifier 'EIn' is not part of haxe.macro.ExprDef (Suggestion: EIf)
A quick workaround is removing the case
case EIn(e1, e2):
//e.g. for(i in 0...5){}
e1 = parseExpr(e1);
e2 = parseExpr(e2);
expr.expr = EIn(e1, e2);
but I think there must be something else to it.
The text was updated successfully, but these errors were encountered:
The commit which removed
EIf
causes this error in MUnit:A quick workaround is removing the
case
but I think there must be something else to it.
The text was updated successfully, but these errors were encountered: