class DEBUGGER__::UI_Base

def event type, *args

def event type, *args
  case type
  when :suspend_bp
    i, bp = *args
    puts "\nStop by \##{i} #{bp}" if bp
  when :suspend_trap
    puts "\nStop by #{args.first}"
  end
end

def flush

def flush
end

def ignore_output_on_suspend?

def ignore_output_on_suspend?
  false
end