Class: RDoc::Markup::RegexpHandling
Relationships & Source Files | |
Inherits: | Object |
Defined in: | lib/rdoc/markup/regexp_handling.rb |
Overview
Hold details of a regexp handling sequence
Class Method Summary
- .new(type, text) ⇒ RegexpHandling constructor
Instance Attribute Summary
Instance Method Summary
Constructor Details
.new(type, text) ⇒ RegexpHandling
[ GitHub ]
Instance Attribute Details
#text (rw)
Regexp handling text
# File 'lib/rdoc/markup/regexp_handling.rb', line 15
attr_accessor :text
#type (readonly)
Regexp handling type
# File 'lib/rdoc/markup/regexp_handling.rb', line 10
attr_reader :type
Instance Method Details
#==(o)
Regexp handlings are equal when the have the same text and type
#inspect
This method is for internal use only.
[ GitHub ]
# File 'lib/rdoc/markup/regexp_handling.rb', line 31
def inspect # :nodoc: "#<RDoc::Markup::RegexpHandling:0x%x @type=%p, @text=%p>" % [ object_id, @type, text.dump] end
#to_s
This method is for internal use only.
[ GitHub ]