public static function isAlphanumeric($c)
 {
     return Lexer::isAlpha($c) || Lexer::isNumeric($c);
 }