浏览代码

Remove the duplicated Null

杨博 (Yang Bo) 10 年之前
父节点
当前提交
cc16dd6c5a
共有 1 个文件被更改,包括 1 次插入1 次删除
  1. 1 1
      std/haxe/macro/Expr.hx

+ 1 - 1
std/haxe/macro/Expr.hx

@@ -434,7 +434,7 @@ enum ExprDef {
 		Represents a `switch` expression with related cases and an optional.
 		`default` case if edef != null.
 	**/
-	ESwitch( e : Expr, cases : Array<Case>, edef : Null<Null<Expr>> );
+	ESwitch( e : Expr, cases : Array<Case>, edef : Null<Expr> );
 
 	/**
 		Represents a `try`-expression with related catches.