Class: YARD::Parser::Ruby::Legacy::RubyToken::TkUnknownChar
- Inherits:
-
Token
- Object
- Token
- YARD::Parser::Ruby::Legacy::RubyToken::TkUnknownChar
- Defined in:
- lib/yard/parser/ruby/legacy/ruby_lex.rb
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)
-
- (TkUnknownChar) initialize(line_no, char_no, id)
constructor
A new instance of TkUnknownChar.
Methods inherited from Token
Constructor Details
- (TkUnknownChar) initialize(line_no, char_no, id)
A new instance of TkUnknownChar
109 110 111 112 |
# File 'lib/yard/parser/ruby/legacy/ruby_lex.rb', line 109 def initialize(line_no, char_no, id) super(line_no, char_no) @name = char_no > 255 ? '?' : char_no.chr end |
Instance Attribute Details
- (Object) name (readonly)
Returns the value of attribute name
113 114 115 |
# File 'lib/yard/parser/ruby/legacy/ruby_lex.rb', line 113 def name @name end |