X-Git-Url: http://nitlanguage.org diff --git a/src/nitmetrics.nit b/src/nitmetrics.nit index ab95c3d..032ce7f 100644 --- a/src/nitmetrics.nit +++ b/src/nitmetrics.nit @@ -17,12 +17,12 @@ # A program that collects various metrics on nit programs and libraries module nitmetrics -import frontend +import frontend::code_gen import metrics # Create a tool context to handle options and paths var toolcontext = new ToolContext -toolcontext.tooldescription = "Usage: nitmetrics [OPTION]... ...\mComputes various metrics on Nit programs." +toolcontext.tooldescription = "Usage: nitmetrics [OPTION]... ...\nComputes various metrics on Nit programs." # We do not add other options, so process them now! toolcontext.process_options(args) @@ -30,13 +30,13 @@ toolcontext.process_options(args) # Get arguments var arguments = toolcontext.option_context.rest -# We need a model to collect stufs +# We need a model to collect stuff var model = new Model -# An a model builder to parse files +# And a model builder to parse files var modelbuilder = new ModelBuilder(model, toolcontext) # Here we load an process all modules passed on the command line -var mmodules = modelbuilder.parse(arguments) +var mmodules = modelbuilder.parse_full(arguments) modelbuilder.run_phases print "*** METRICS ***"