class YARD::Parser::Ruby::Legacy::RubyToken::TkOPASGN
Attributes
op[R]
Public Class Methods
new(line_no, char_no, op)
click to toggle source
Calls superclass method
YARD::Parser::Ruby::Legacy::RubyToken::Token.new
# 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