Increment errors if there's an exception

This commit is contained in:
de4dot 2012-07-31 04:39:34 +02:00
parent 06b7374276
commit 6be691ab6d

View File

@ -205,6 +205,10 @@ namespace de4dot.code {
inlineReturnValues();
return callResults.Count;
}
catch {
errors++;
throw;
}
finally {
theMethod = null;
callResults = null;