From bd3306571644aae2e496dc0ace204733848561c8 Mon Sep 17 00:00:00 2001 From: Jean Privat Date: Thu, 27 Nov 2014 21:56:35 -0500 Subject: [PATCH] nitlight: enable ToolContext::keep_going to still highlight invalid source-files Signed-off-by: Jean Privat --- src/nitlight.nit | 3 +++ 1 file changed, 3 insertions(+) diff --git a/src/nitlight.nit b/src/nitlight.nit index e466f74..4c8cf9c 100644 --- a/src/nitlight.nit +++ b/src/nitlight.nit @@ -22,6 +22,9 @@ var toolcontext = new ToolContext # Disable `cached` because it causes issues when printing transformed AST. FIXME toolcontext.cached_phase.disabled = true +# Try to colorize, even if programs are non valid +toolcontext.keep_going = true + var opt_fragment = new OptionBool("Omit document header and footer", "-f", "--fragment") var opt_first_line = new OptionInt("Start the source file at this line (default: 1)", 0, "--first-line") var opt_last_line = new OptionInt("End the source file at this line (default: to the end)", 0, "--last-line") -- 1.7.9.5