class IRB::Notifier::AbstractNotifier

def ppx(prefix, *objs)

See OutputMethod#ppx for more detail.

given during object initialization.
Same as #pp, except it concatenates the given +prefix+ with the #prefix
def ppx(prefix, *objs)
  if notify?
    @base_notifier.ppx @prefix+prefix, *objs
  end
end