From: Jean Privat Date: Wed, 29 Oct 2014 12:50:54 +0000 (-0400) Subject: phase: make `disabled=` public X-Git-Tag: v0.6.10~10^2~3 X-Git-Url: http://nitlanguage.org phase: make `disabled=` public Signed-off-by: Jean Privat --- diff --git a/src/phase.nit b/src/phase.nit index d1cc1cb..57b8b53 100644 --- a/src/phase.nit +++ b/src/phase.nit @@ -182,7 +182,9 @@ abstract class Phase # Is the phase globally disabled? # A disabled phase is not called automatically called by `ToolContext::run_phases` and cie. - var disabled = false + # + # Warning: disabling a phase may cause subsequent phases to work in a degraded way or to fail. + var disabled = false is writable # Specific actions to execute on the whole tree of a module # @toimplement