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.



89
90
91
92
# File 'lib/rdoc/ruby_token.rb', line 89

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



93
94
95
# File 'lib/rdoc/ruby_token.rb', line 93

def name
  @name
end

Instance Method Details

#==(other) ⇒ Object



95
96
97
98
99
100
# File 'lib/rdoc/ruby_token.rb', line 95

def ==(other)
  self.class == other.class and
  other.line_no == @line_no and
  other.char_no == @char_no and
  other.name == @name
end

#set_text(text) ⇒ Object



102
103
104
105
# File 'lib/rdoc/ruby_token.rb', line 102

def set_text text
  @name = text
  self
end