Nicolas Cannasse 19 年之前
父节点
当前提交
d4119ca982
共有 1 个文件被更改,包括 2 次插入2 次删除
  1. 2 2
      std/List.hx

+ 2 - 2
std/List.hx

@@ -49,9 +49,9 @@ class List<T> {
 
 	public function push( item : T ) {
 		var x = #if neko
-			untyped __dollar__array(item,q)
+			untyped __dollar__array(item,h)
 		#else true
-			[item,q]
+			[item,h]
 		#end;
 		h = x;
 		if( q == null )