Class: YARD::Parser::Ruby::Legacy::RubyToken::TkId
- Inherits:
-
Token
- Object
- Token
- YARD::Parser::Ruby::Legacy::RubyToken::TkId
- Defined in:
- lib/yard/parser/ruby/legacy/ruby_lex.rb
Overview
Represents a Ruby identifier
Direct Known Subclasses
Constant Summary
Instance Attribute Summary (collapse)
-
- (Object) name
readonly
Returns the value of attribute name.
Attributes inherited from Token
char_no, lex_state, line_no, text
Instance Method Summary (collapse)
-
- (TkId) initialize(line_no, char_no, name)
constructor
A new instance of TkId.
Methods inherited from Token
Constructor Details
- (TkId) initialize(line_no, char_no, name)
A new instance of TkId
74 75 76 77 |
# File 'lib/yard/parser/ruby/legacy/ruby_lex.rb', line 74 def initialize(line_no, char_no, name) super(line_no, char_no) @name = name end |
Instance Attribute Details
- (Object) name (readonly)
Returns the value of attribute name
78 79 80 |
# File 'lib/yard/parser/ruby/legacy/ruby_lex.rb', line 78 def name @name end |