class Byebug::ThreadCommand::ResumeSubcommand
Resumes the specified thread
def description
def description <<-EOD th[read] r[esume] <thnum> #{short_description} EOD end
def execute
def execute return puts(help) unless @match[1] context, err = context_from_thread(@match[1]) return errmsg(err) if err unless context.suspended? return errmsg(pr('thread.errors.already_running')) end context.resume display_context(context) end
def regexp
def regexp /^\s* r(?:esume)? (?: \s* (\d+))? \s*$/x end
def short_description
def short_description 'Resumes execution of the specified thread' end