From: Jean Privat Date: Thu, 4 Jun 2015 02:32:21 +0000 (-0400) Subject: phase: continue the phase if errors occur. X-Git-Tag: v0.7.6~61^2~6 X-Git-Url: http://nitlanguage.org phase: continue the phase if errors occur. Signed-off-by: Jean Privat --- diff --git a/src/phase.nit b/src/phase.nit index 5f0faf1..682d23e 100644 --- a/src/phase.nit +++ b/src/phase.nit @@ -115,7 +115,6 @@ redef class ToolContext phase.process_nmodule(nmodule) if errcount != self.error_count then self.check_errors - break end errcount = self.error_count for nclassdef in nmodule.n_classdefs do @@ -128,7 +127,6 @@ redef class ToolContext end if errcount != self.error_count then self.check_errors - break end for na in vannot.annotations do var p = na.parent @@ -138,7 +136,6 @@ redef class ToolContext end if errcount != self.error_count then self.check_errors - break end end self.check_errors