module PryByebug::Helpers::Navigation

Helpers to aid breaking out of the REPL loop

Public Instance Methods

breakout_navigation(action, options = {}) click to toggle source

Breaks out of the REPL loop and signals tracer

# File lib/pry-byebug/helpers/navigation.rb, line 10
def breakout_navigation(action, options = {})
  _pry_.binding_stack.clear

  throw :breakout_nav, action: action, options: options, pry: _pry_
end