Nicolas Cannasse %!s(int64=8) %!d(string=hai) anos
pai
achega
9f15f30b37
Modificáronse 1 ficheiros con 1 adicións e 1 borrados
  1. 1 1
      hxsl/MacroParser.hx

+ 1 - 1
hxsl/MacroParser.hx

@@ -223,7 +223,7 @@ class MacroParser {
 		case ESwitch(e, cases, def):
 			ESwitch(parseExpr(e), [for( c in cases ) { expr : parseExpr(c.expr), values : [for( v in c.values ) parseExpr(v)] }], def == null ? null : parseExpr(def));
 		case EWhile(cond, e, normalWhile):
-			hxsl.ExprDef.EWhile(parseExpr(cond), parseExpr(e), normalWhile);
+			EWhile(parseExpr(cond), parseExpr(e), normalWhile);
 		default:
 			null;
 		};