class Byebug::CommandProcessor

def at_breakpoint(context, breakpoint)

def at_breakpoint(context, breakpoint)
  aprint 'stopped' if Byebug.annotate.to_i > 2
  n = Byebug.breakpoints.index(breakpoint) + 1
  file = CommandProcessor.canonic_file(breakpoint.source)
  line = breakpoint.pos
  if Byebug.annotate.to_i > 2
    print afmt("source #{file}:#{line}")
  end
  print "Stopped by breakpoint %d at %s:%s\n", n, file, line
end