class Byebug::ThreadStopCommand

def description

def description
  %{th[read] stop <nnn>\t\tstop thread nnn}
end

def execute

def execute
  c = parse_thread_num_for_cmd('thread stop', @match[1])
  return unless c
  c.suspend
  display_context(c)
end

def names

def names
  %w(thread)
end

def regexp

def regexp
  /^\s* th(?:read)? \s+ stop \s* (\S*) \s*$/x
end