(char ch)
| 175 | } |
| 176 | |
| 177 | public static boolean isJavaIdentifierStart(char ch) { |
| 178 | return isLetter(ch) || ch == '$' || ch == '_'; |
| 179 | //TODO: add if (getType(ch)==LETTER_NUMBER) || getType(ch)==CURRENCY_SYMBOL |
| 180 | } |
| 181 | |
| 182 | public static boolean isJavaIdentifierStart(int c) { |
| 183 | return canCastToChar(c) && isJavaIdentifierStart((char) c); |
no test coverage detected