In Files

  • rdoc/markup/inline.rb

Parent

Files

Class/Module Index [+]

Quicksearch

RDoc::Markup::Special

Hold details of a special sequence

Attributes

text[RW]
type[R]

Public Class Methods

new(type, text) click to toggle source
 
               # File rdoc/markup/inline.rb, line 80
def initialize(type, text)
  @type, @text = type, text
end
            

Public Instance Methods

==(o) click to toggle source
 
               # File rdoc/markup/inline.rb, line 84
def ==(o)
  self.text == o.text && self.type == o.type
end
            
inspect() click to toggle source
 
               # File rdoc/markup/inline.rb, line 88
def inspect
  "#<RDoc::Markup::Special:0x%x @type=%p, name=%p @text=%p>" % [
    object_id, @type, RDoc::Markup::Attribute.as_string(type), text.dump]
end
            
to_s() click to toggle source
 
               # File rdoc/markup/inline.rb, line 93
def to_s
  "Special: type=#{type}, name=#{RDoc::Markup::Attribute.as_string type}, text=#{text.dump}"
end