Browse Source

Fixed args copy error.

woollybah 8 năm trước cách đây
mục cha
commit
3d8b9702cc
1 tập tin đã thay đổi với 1 bổ sung1 xóa
  1. 1 1
      expr.bmx

+ 1 - 1
expr.bmx

@@ -3169,7 +3169,7 @@ Type TNewExpr Extends TExpr
 	End Method
 
 	Method Copy:TExpr()
-		Return New TNewExpr.Create(args, isSuper)
+		Return New TNewExpr.Create(CopyArgs(args), isSuper)
 	End Method
 
 	Method Semant:TExpr()