Class: RDoc::RubyToken::TkId

Inherits:
Token
  • Object
show all
Defined in:
lib/rdoc/ruby_token.rb

Direct Known Subclasses

TkKW

Instance Attribute Summary collapse

Attributes inherited from Token

#char_no, #line_no, #seek

Instance Method Summary collapse

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

#nameObject (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

#inspectObject

: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