class IRB::Notifier::AbstractNotifier

def pp(*objs)

See OutputMethod#ppx for more detail.
initialization.
Same as #ppx, except it uses the #prefix given during object
def pp(*objs)
  if notify?
    @base_notifier.ppx @prefix, *objs
  end
end