class Byebug::PryProcessor

def perform(action, options = {})


Set up a number of navigational commands to be performed by Byebug.
def perform(action, options = {})
  return unless %i(
    backtrace
    down
    finish
    frame
    next
    step
    up
  ).include?(action)
  send("perform_#{action}", options)
end