Class: PryByebug::UpCommand

Inherits:
Pry::ClassCommand
  • Object
show all
Includes:
Helpers::Navigation
Defined in:
lib/pry-byebug/commands/up.rb

Overview

Travel up the frame stack

Instance Method Summary collapse

Methods included from Helpers::Navigation

#breakout_navigation

Instance Method Details

#processObject



27
28
29
30
31
# File 'lib/pry-byebug/commands/up.rb', line 27

def process
  PryByebug.check_file_context(target)

  breakout_navigation :up, times: args.first
end