class PryByebug::NextCommand

Run a number of lines and then stop again

Public Instance Methods

process() click to toggle source
# File lib/pry-byebug/commands/next.rb, line 27
def process
  return if check_multiline_context

  PryByebug.check_file_context(target)

  breakout_navigation :next, lines: args.first
end