[vala/wip/ricotz/lsp-rev: 8/12] Revert "vala: Always bail if there are semantic errors"



commit 8f02781a1865f7c4da240a2a496d86485e353c43
Author: Rico Tzschichholz <ricotz ubuntu com>
Date:   Wed Feb 19 14:25:45 2020 +0100

    Revert "vala: Always bail if there are semantic errors"
    
    This reverts commit 217c84bcd1f1f4884e9fda044b6af9e140f8fe94.

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


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