Merge: engines: no more `super_inits` method used in old-style automatic init
[nit.git] / src / nitls.nit
index 1709c56..54320cc 100644 (file)
@@ -31,7 +31,7 @@ class ProjTree
                        if opt_paths then
                                return o.filepath.as(not null)
                        else
-                               return "{o.name} ({o.filepath})"
+                               return "{o.name} ({o.filepath.to_s})"
                        end
                else if o isa ModulePath then
                        if opt_paths then
@@ -46,8 +46,6 @@ class ProjTree
 end
 
 var tc = new ToolContext
-var model = new Model
-var mb = new ModelBuilder(model, tc)
 
 var opt_keep = new OptionBool("Ignore errors and files that are not a Nit source file", "-k", "--keep")
 var opt_recursive = new OptionBool("Process directories recussively", "-r", "--recursive")
@@ -75,6 +73,9 @@ if sum > 1 then
        exit 1
 end
 
+var model = new Model
+var mb = new ModelBuilder(model, tc)
+
 if opt_depends.value then
        if opt_recursive.value then
                print "-M incompatible with -r"