class DEBUGGER__::LimitedPP

def <<(other)

def <<(other)
  @buf << other
  if @buf.size >= @max
    @buf = @buf[0..@max] + '...'
    throw self
  end
end