[vala/staging] vala: Always bail if there are semantic errors



commit 217c84bcd1f1f4884e9fda044b6af9e140f8fe94
Author: Princeton Ferro <princetonferro gmail com>
Date:   Sat Jan 18 20:03:37 2020 +0100

    vala: Always bail if there are semantic errors
    
    Previously introduced by 1430c461d4a45026331663989113feb195588255

 vala/valacodecontext.vala | 4 +++-
 1 file changed, 3 insertions(+), 1 deletion(-)
---
diff --git a/vala/valacodecontext.vala b/vala/valacodecontext.vala
index 9bce9f19d..1c3ad77cd 100644
--- a/vala/valacodecontext.vala
+++ b/vala/valacodecontext.vala
@@ -520,7 +520,9 @@ public class Vala.CodeContext {
 
                analyzer.analyze (this);
 
-               if (!keep_going && report.get_errors () > 0) {
+               // Don't run the FlowAnalyzer if we have semantic errors, since
+               // the messages from FlowAnalyzer will usually be nonsensical.
+               if (report.get_errors () > 0) {
                        return;
                }
 


[Date Prev][Date Next]   [Thread Prev][Thread Next]   [Thread Index] [Date Index] [Author Index]