class Byebug::ThreadStopCommand

def execute

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