Class: RDoc::RubyToken::TkOPASGN

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

Instance Attribute Summary collapse

Attributes inherited from TkOp

#name

Attributes inherited from Token

#char_no, #line_no, #seek

Instance Method Summary collapse

Methods inherited from TkOp

#set_text

Methods inherited from Token

#set_text

Constructor Details

#initialize(seek, line_no, char_no, op) ⇒ TkOPASGN

Returns a new instance of TkOPASGN.



159
160
161
162
163
164
# File 'lib/rdoc/ruby_token.rb', line 159

def initialize(seek, line_no, char_no, op)
  super(seek, line_no, char_no)
  op = TkReading2Token[op][0] unless op.kind_of?(Symbol)
  @op = op
  @text = nil
end

Instance Attribute Details

#opObject (readonly)

Returns the value of attribute op



166
167
168
# File 'lib/rdoc/ruby_token.rb', line 166

def op
  @op
end

Instance Method Details

#==(other) ⇒ Object



168
169
170
171
172
173
# File 'lib/rdoc/ruby_token.rb', line 168

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

#textObject



175
176
177
# File 'lib/rdoc/ruby_token.rb', line 175

def text
  @text ||= "#{TkToken2Reading[op]}="
end