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)
  command = command_list.match(input)
  return command.new(self, input).execute if command
  puts thread_safe_eval(input)
rescue => e
  errmsg(e)
end