class RDoc::Markup::RegexpHandling

def ==(o)

def ==(o)
  self.text == o.text && self.type == o.type
end

def initialize(type, text)

def initialize(type, text)
  @type, @text = type, text
end

def inspect # :nodoc:

:nodoc:
def inspect # :nodoc:
  "#<RDoc::Markup::RegexpHandling:0x%x @type=%p, @text=%p>" % [
    object_id, @type, text.dump]
end

def to_s # :nodoc:

:nodoc:
def to_s # :nodoc:
  "RegexpHandling: type=#{type} text=#{text.dump}"
end