Methods
#
N
Included Modules
Attributes
[R] level
Class Public methods
new(base, level, prefix)
# File ../ruby/lib/irb/notifier.rb, line 113
def initialize(base, level, prefix)
  super(prefix, base)

  @level = level
end
Instance Public methods
<=>(other)
# File ../ruby/lib/irb/notifier.rb, line 121
def <=>(other)
  @level <=> other.level
end
notify?()
# File ../ruby/lib/irb/notifier.rb, line 125
def notify?
  @base_notifier.level >= self
end