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