class YARD::Parser::Ruby::Legacy::RubyToken::TkUnknownChar

Attributes

name[R]

Public Class Methods

new(line_no, char_no, _id) click to toggle source
# File lib/yard/parser/ruby/legacy/ruby_lex.rb, line 108
def initialize(line_no, char_no, _id)
  super(line_no, char_no)
  @name = char_no > 255 ? '?' : char_no.chr
end