浏览代码

haxe.macro.Expr.hx documentation update

EVars was still weird
Mark Knol 10 年之前
父节点
当前提交
d5da37bd05
共有 1 个文件被更改,包括 1 次插入3 次删除
  1. 1 3
      std/haxe/macro/Expr.hx

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

@@ -394,9 +394,7 @@ enum ExprDef {
 	EUnop( op : Unop, postFix : Bool, e : Expr );
 
 	/**
-		A variable declaration `var v` or `var v = expr`.
-		In this AST there can be multiple variables for `var x, y` notation, 
-		hence the Array argument.
+		Variable declarations.
 	**/
 	EVars( vars : Array<Var> );