class Byebug::ThreadCommand::ResumeCommand
def execute
def execute return puts(help) unless @match[1] context, err = context_from_thread(@match[1]) return errmsg(err) if err return errmsg(pr("thread.errors.already_running")) unless context.suspended? context.resume display_context(context) end