Class: RDoc::RubyToken::TkId
Direct Known Subclasses
Instance Attribute Summary collapse
-
#name ⇒ Object
(also: #text)
readonly
Returns the value of attribute name.
Attributes inherited from Token
Instance Method Summary collapse
- #==(other) ⇒ Object
-
#initialize(seek, line_no, char_no, name) ⇒ TkId
constructor
A new instance of TkId.
-
#inspect ⇒ Object
:nodoc:.
- #set_text(text) ⇒ Object
Constructor Details
#initialize(seek, line_no, char_no, name) ⇒ TkId
Returns a new instance of TkId.
100 101 102 103 |
# File 'lib/rdoc/ruby_token.rb', line 100 def initialize(seek, line_no, char_no, name) super(seek, line_no, char_no) @name = name end |
Instance Attribute Details
#name ⇒ Object (readonly) Also known as: text
Returns the value of attribute name
104 105 106 |
# File 'lib/rdoc/ruby_token.rb', line 104 def name @name end |
Instance Method Details
#==(other) ⇒ Object
106 107 108 109 110 111 |
# File 'lib/rdoc/ruby_token.rb', line 106 def ==(other) self.class == other.class and other.line_no == @line_no and other.char_no == @char_no and other.name == @name end |
#inspect ⇒ Object
:nodoc:
120 121 122 123 |
# File 'lib/rdoc/ruby_token.rb', line 120 def inspect # :nodoc: klass = self.class.name.split('::').last "{%s %d, %d:%d %p}" % [klass, @seek, @line_no, @char_no, @name] end |
#set_text(text) ⇒ Object
113 114 115 116 |
# File 'lib/rdoc/ruby_token.rb', line 113 def set_text text @name = text self end |