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;
 		};