Class: PryByebug::DownCommand

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

Overview

Travel down the frame stack

Instance Method Summary collapse

Methods included from Helpers::Navigation

#breakout_navigation

Instance Method Details

#processObject



25
26
27
28
29
# File 'lib/pry-byebug/commands/down.rb', line 25

def process
  PryByebug.check_file_context(target)

  breakout_navigation :down, times: args.first
end