class PryByebug::ContinueCommand

Continue program execution until the next breakpoint

Public Instance Methods

process() click to toggle source
# File lib/pry-byebug/commands/continue.rb, line 27
def process
  PryByebug.check_file_context(target)

  breakpoints.add_file(current_file, args.first.to_i) if args.first

  breakout_navigation :continue
ensure
  Byebug.stop if Byebug.stoppable?
end