소스 검색

Allow copy for semanted newarrayexpr. Fixes #295.

woollybah 8 년 전
부모
커밋
cbb7d0412c
1개의 변경된 파일1개의 추가작업 그리고 1개의 파일을 삭제
  1. 1 1
      expr.bmx

+ 1 - 1
expr.bmx

@@ -988,7 +988,7 @@ Type TNewArrayExpr Extends TExpr
 	End Method
 
 	Method Copy:TExpr()
-		If exprType InternalErr
+		'If exprType InternalErr
 		Local cexpr:TExpr[expr.length]
 		For Local i:Int = 0 Until expr.length
 			cexpr[i] = CopyExpr(expr[i])