class Byebug::PryProcessor

def resume_pry


Resume an existing Pry REPL at the paused point.
def resume_pry
  new_binding = frame._binding
  run do
    if defined?(@pry) && @pry
      @pry.repl(new_binding)
    else
      @pry = Pry.start_without_pry_byebug(new_binding)
    end
  end
end