From 0fe5ab1639874de22f5bbf9f83eed71b16f0e15a Mon Sep 17 00:00:00 2001 From: Jean Privat Date: Sat, 10 May 2014 15:02:04 -0400 Subject: [PATCH] nitlight: parse options before initialising modelbuilder Signed-off-by: Jean Privat --- src/nitlight.nit | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/nitlight.nit b/src/nitlight.nit index 5f22329..85b2c1a 100644 --- a/src/nitlight.nit +++ b/src/nitlight.nit @@ -27,11 +27,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(args) var args = toolcontext.option_context.rest var mmodules = modelbuilder.parse(args) -- 1.7.9.5