class Byebug::ThreadStopCommand
Stop execution of a thread.
def description
def description %(th[read] stop <n> Stops thread <n>.) 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