Browse Source

Fixed args copy error.

woollybah 8 years ago
parent
commit
3d8b9702cc
1 changed files with 1 additions and 1 deletions
  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()