Преглед на файлове

Don't eat compile errors.

woollybah преди 8 години
родител
ревизия
d27e8f2ef0
променени са 1 файла, в които са добавени 5 реда и са изтрити 1 реда
  1. 5 1
      expr.bmx

+ 5 - 1
expr.bmx

@@ -1633,7 +1633,11 @@ Type TBinaryMathExpr Extends TBinaryExpr
 					Return New TInvokeMemberExpr.Create( lhs, decl, args ).Semant()
 				End If
 			Catch error:String
-				Err "Operator " + op + " cannot be used with Objects."
+				If error.StartsWith("Compile Error") Then
+					Throw error
+				Else
+					Err "Operator " + op + " cannot be used with Objects."
+				End If
 			End Try
 		End If