class Byebug::ThreadResumeCommand

:nodoc:

def execute

def execute
  c = parse_thread_num_for_cmd("thread resume", @match[1])
  return unless c
  if !c.thread.stop?
    print "Already running."
    return
  end
  c.resume
  display_context(c)
end

def help(cmd)

def help(cmd)
  %{
    th[read] resume <nnn>\t\tresume thread nnn
  }
end

def help_command

def help_command
  'thread'
end

def regexp

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