Class: PryByebug::FrameCommand

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

Overview

Move to a specific frame in the callstack

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/frame.rb', line 27

def process
  PryByebug.check_file_context(target)

  breakout_navigation :frame, index: args.first
end