Browse Source

Merge pull request #4612 from Atry/patch-10

Remove the duplicated Null
Simon Krajewski 9 years ago
parent
commit
6dea191b81
1 changed files with 1 additions and 1 deletions
  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.