summaryrefslogtreecommitdiff
path: root/Source/DafnyExtension/ProgressMargin.cs
diff options
context:
space:
mode:
Diffstat (limited to 'Source/DafnyExtension/ProgressMargin.cs')
-rw-r--r--Source/DafnyExtension/ProgressMargin.cs4
1 files changed, 3 insertions, 1 deletions
diff --git a/Source/DafnyExtension/ProgressMargin.cs b/Source/DafnyExtension/ProgressMargin.cs
index d587d3dd..e38d9eea 100644
--- a/Source/DafnyExtension/ProgressMargin.cs
+++ b/Source/DafnyExtension/ProgressMargin.cs
@@ -292,7 +292,9 @@ namespace DafnyLanguage
} catch (Exception e) {
newErrors.Add(new DafnyError(0, 0, ErrorCategory.InternalError, "verification process error: " + e.Message, snapshot));
}
- errorListHolder.PopulateErrorList(newErrors, true, snapshot);
+
+ errorListHolder.VerificationErrors = newErrors;
+ errorListHolder.UpdateErrorList(snapshot);
lock (this) {
bufferChangesPreVerificationStart.Clear();