class Byebug::InfoCommand

def info_file_breakpoints(file)

def info_file_breakpoints(file)
  breakpoints = LineCache.trace_line_numbers(file)
  if breakpoints
    print "\tbreakpoint line numbers:\n"
    print columnize(breakpoints.to_a.sort, Command.settings[:width])
  end
end