Nicolas Cannasse 8 سال پیش
والد
کامیت
9f15f30b37
1فایلهای تغییر یافته به همراه1 افزوده شده و 1 حذف شده
  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;
 		};