class Byebug::ThreadSwitchCommand

def execute

def execute
  c = parse_thread_num_for_cmd("thread switch", @match[1])
  return unless c
  display_context(c)
  c.stop_next = 1
  c.thread.run
  @state.proceed
end