src: remove remaining references of subclasses on AMethPropdef
[nit.git] / src / nitdbg_client.nit
index 489e1d7..4b01ecd 100644 (file)
@@ -89,7 +89,7 @@ class DebugClient
 
        fun read_command: String
        do
-               var buff = new Buffer
+               var buff = new FlatBuffer
                while debugger_connection.ready_to_read(40) do buff.append(debugger_connection.read)
                return buff.to_s
        end
@@ -105,7 +105,7 @@ end
 var toolcontext = new ToolContext
 toolcontext.tooldescription = "Usage: nitdbg_client [OPTION]...\nConnects to a nitdbg_server and controls it."
 toolcontext.accept_no_arguments = true
-toolcontext.process_options
+toolcontext.process_options(args)
 
 var debug: DebugClient