Class: YARD::Parser::Ruby::Legacy::RubyToken::TkUnknownChar
- Defined in:
- lib/yard/parser/ruby/legacy/ruby_lex.rb
Constant Summary
Instance Attribute Summary collapse
-
#char_no ⇒ Integer
inherited
from Token
readonly
The character number in the file/stream the token is located.
-
#lex_state ⇒ Symbol
inherited
from Token
The lexical state at the token.
-
#line_no ⇒ Integer
inherited
from Token
readonly
The line number in the file/stream the token is located.
-
#name ⇒ Object
readonly
Returns the value of attribute name.
-
#text ⇒ String
inherited
from Token
readonly
The token text value.
Instance Method Summary collapse
-
#initialize(line_no, char_no, id) ⇒ TkUnknownChar
constructor
A new instance of TkUnknownChar.
Constructor Details
#initialize(line_no, char_no, id) ⇒ TkUnknownChar
Returns 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
#char_no ⇒ Integer (readonly) Originally defined in class Token
Returns the character number in the file/stream the token is located.
#lex_state ⇒ Symbol Originally defined in class Token
Returns the lexical state at the token
#line_no ⇒ Integer (readonly) Originally defined in class Token
Returns the line number in the file/stream the token is located.
#name ⇒ Object (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 |