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) }
    if breakpoints.empty?
      return errmsg('No breakpoints found among list given')
    end
  end
  puts 'Num Enb What'
  breakpoints.each { |b| info_breakpoint(b) }
end