Class: RubyToken::TkOPASGN

Inherits:
TkOp show all
Defined in:
lib/rdoc-f95/parsers/parse_rb.rb

Constant Summary

Constants inherited from Token

RubyToken::Token::NO_TEXT

Instance Attribute Summary collapse

Attributes inherited from Token

#char_no, #line_no, #text

Instance Method Summary collapse

Methods inherited from TkOp

#name

Methods inherited from Token

#set_text

Constructor Details

#initialize(line_no, char_no, op) ⇒ TkOPASGN

Returns a new instance of TkOPASGN.



88
89
90
91
92
# File 'lib/rdoc-f95/parsers/parse_rb.rb', line 88

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

Instance Attribute Details

#opObject (readonly)

Returns the value of attribute op.



93
94
95
# File 'lib/rdoc-f95/parsers/parse_rb.rb', line 93

def op
  @op
end