debugger: remove dependency to `nitx`
authorAlexandre Terrasa <alexandre@moz-code.org>
Mon, 25 May 2015 15:23:50 +0000 (11:23 -0400)
committerAlexandre Terrasa <alexandre@moz-code.org>
Mon, 25 May 2015 15:23:50 +0000 (11:23 -0400)
Since the debugger is broken, we will redo the nitx command when it will be fixed.

Signed-off-by: Alexandre Terrasa <alexandre@moz-code.org>

src/interpreter/debugger.nit

index 1765d9e..cf4e815 100644 (file)
@@ -18,7 +18,6 @@
 module debugger
 
 intrude import naive_interpreter
-import nitx
 intrude import semantize::local_var_init
 intrude import semantize::scope
 intrude import toolcontext
@@ -470,10 +469,6 @@ class Debugger
                else if command == "help" then
                        help
                        return true
-               # Opens a new NitIndex prompt on current model
-               else if command == "nitx" then
-                       new NitIndex.with_infos(modelbuilder, self.mainmodule).prompt
-                       return true
                else if command == "bt" or command == "backtrack" then
                        print stack_trace
                        return true