Class: YARD::Parser::Ruby::Legacy::RubyToken::TkOPASGN

Inherits:
TkOp
  • Object
show all
Defined in:
lib/yard/parser/ruby/legacy/ruby_lex.rb

Constant Summary

Instance Attribute Summary (collapse)

Instance Method Summary (collapse)

Constructor Details

- (TkOPASGN) initialize(line_no, char_no, op)

Returns 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

- (Integer) char_no (readonly) Originally defined in class Token

Returns the character number in the file/stream the token is located.

Returns:

  • (Integer)

    the character number in the file/stream the token is located.

- (Symbol) lex_state Originally defined in class Token

Returns the lexical state at the token

Returns:

  • (Symbol)

    the lexical state at the token

- (Integer) line_no (readonly) Originally defined in class Token

Returns the line number in the file/stream the token is located.

Returns:

  • (Integer)

    the line number in the file/stream the token is located.

- (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

- (String) text (readonly) Originally defined in class Token

Returns the token text value

Returns:

  • (String)

    the token text value