class Byebug::CommandProcessor

def postcmd(commands, context, cmd)

def postcmd(commands, context, cmd)
  if Byebug.annotate.to_i > 2
    cmd = @last_cmd unless cmd
    breakpoint_annotations(commands, context) if
      @@Show_breakpoints_postcmd.find{|pat| cmd =~ pat}
    display_annotations(commands, context)
    if @@Show_annotations_postcmd.find{|pat| cmd =~ pat}
      annotation('stack', commands, context, "where") if
        context.stack_size > 0
      annotation('variables', commands, context, "info variables") unless
        context.dead?
    end
    if not context.dead? and @@Show_annotations_run.find{|pat| cmd =~ pat}
      aprint 'starting'  if Byebug.annotate.to_i > 2
      @byebug_context_was_dead = false
    end
  end
end