class Byebug::ThreadCommand::SwitchCommand

def execute

def execute
  return puts(help) unless @match[1]
  context, err = context_from_thread(@match[1])
  return errmsg(err) if err
  display_context(context)
  context.switch
  processor.proceed!
end