Class: YARD::Parser::Ruby::Legacy::RubyToken::TkOPASGN
Constant Summary
Instance Attribute Summary (collapse)
-
- (Object) op
readonly
Returns the value of attribute op.
Attributes inherited from Token
char_no, lex_state, line_no, text
Instance Method Summary (collapse)
-
- (TkOPASGN) initialize(line_no, char_no, op)
constructor
A new instance of TkOPASGN.
Methods inherited from TkOp
Methods inherited from Token
Constructor Details
- (TkOPASGN) initialize(line_no, char_no, op)
A new instance of TkOPASGN
100 101 102 103 104 |
# File 'lib/yard/parser/ruby/legacy/ruby_lex.rb', line 100 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
- (Object) op (readonly)
Returns the value of attribute op
105 106 107 |
# File 'lib/yard/parser/ruby/legacy/ruby_lex.rb', line 105 def op @op end |