X-Git-Url: http://nitlanguage.org diff --git a/src/nitlight.nit b/src/nitlight.nit index 7ead6b9..4c8cf9c 100644 --- a/src/nitlight.nit +++ b/src/nitlight.nit @@ -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") @@ -27,11 +33,11 @@ var opt_full = new OptionBool("Process also imported modules", "--full") var opt_ast = new OptionBool("Generate specific HTML elements for each Node of the AST", "--ast") toolcontext.option_context.add_option(opt_fragment, opt_first_line, opt_last_line, opt_dir, opt_full) toolcontext.tooldescription = "Usage: nitlight [OPTION]... ...\nGenerates HTML of highlited code from Nit source files." +toolcontext.process_options(args) var model = new Model var modelbuilder = new ModelBuilder(model, toolcontext) -toolcontext.process_options var args = toolcontext.option_context.rest var mmodules = modelbuilder.parse(args) @@ -56,10 +62,12 @@ for mm in mmodules do if opt_last_line.value != 0 then v.last_line = opt_last_line.value if opt_ast.value then v.with_ast = true var page = null + var m = modelbuilder.mmodule2nmodule[mm] if not opt_fragment.value then page = new HTMLTag("html") page.add_raw_html """ - """ + + file {{{m.location.file.filename}}}""" if dir == null then page.add_raw_html """