# File lib/kwartz/parser.rb, line 36
    def is_identchar(ch)
      return is_alpha(ch) || is_digit(ch) || ch == ?_
    end