class Byebug::CommandProcessor
def run_cmd(input)
command is not found, it evaluates the unknown input.
Instantiates a command matching the input and runs it. If a matching
Executes the received input
def run_cmd(input) safely do command = command_list.match(input) return command.new(self, input).execute if command puts safe_inspect(multiple_thread_eval(input)) end end