class Byebug::ContinueCommand


specific line number or until program termination.
Allows the user to continue execution until the next stopping point, a
Implements the continue command.

def self.description

def self.description
  <<-EOD
    c[ont[inue]][ <line_number>]
    #{short_description}
  EOD
end

def self.regexp

def self.regexp
  /^\s* c(?:ont(?:inue)?)? (?:\s+(\S+))? \s*$/x
end

def self.short_description

def self.short_description
  'Runs until program ends, hits a breakpoint or reaches a line'
end

def execute

def execute
  if @match[1]
    num, err = get_int(@match[1], 'Continue', 0, nil)
    return errmsg(err) unless num
    filename = File.expand_path(frame.file)
    unless Breakpoint.potential_line?(filename, num)
      return errmsg(pr('continue.errors.unstopped_line', line: num))
    end
    Breakpoint.add(filename, num)
  end
  processor.proceed!
  Byebug.stop if Byebug.stoppable?
end