ropes: Fix the behavior of `RopeBuffer.clear` when used with `to_s`.
[nit.git] / src / nitlight.nit
index 0b073d9..4c8cf9c 100644 (file)
@@ -19,6 +19,12 @@ import highlight
 
 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")