class Byebug::InfoCommand::BreakpointsCommand


Information about current breakpoints

def self.description

def self.description
  <<-DESCRIPTION
    inf[o] b[reakpoints]
    #{short_description}
  DESCRIPTION
end

def self.regexp

def self.regexp
  /^\s* b(?:reakpoints)? (?:\s+ (.+))? \s*$/x
end

def self.short_description

def self.short_description
  "Status of user settable breakpoints"
end

def execute

def execute
  return puts("No breakpoints.") if Byebug.breakpoints.empty?
  breakpoints = Byebug.breakpoints.sort_by(&:id)
  if @match[1]
    indices = @match[1].split(/ +/).map(&:to_i)
    breakpoints = breakpoints.select { |b| indices.member?(b.id) }
    return errmsg("No breakpoints found among list given") if breakpoints.empty?
  end
  puts "Num Enb What"
  breakpoints.each { |b| info_breakpoint(b) }
end

def info_breakpoint(brkpt)

def info_breakpoint(brkpt)
  interp = format(
    "%-<id>3d %-<status>3s at %<file>s:%<line>s%<expression>s",
    id: brkpt.id,
    status: brkpt.enabled? ? "y" : "n",
    file: brkpt.source,
    line: brkpt.pos,
    expression: brkpt.expr.nil? ? "" : " if #{brkpt.expr}"
  )
  puts interp
  hits = brkpt.hit_count
  return unless hits.positive?
  s = hits > 1 ? "s" : ""
  puts "  breakpoint already hit #{hits} time#{s}"
end