class Byebug::InfoCommand::BreakpointsCommand

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