(char ch)
| 184 | } |
| 185 | |
| 186 | public static boolean isJavaIdentifierPart(char ch) { |
| 187 | return isJavaIdentifierStart(ch) || isDigit(ch); |
| 188 | //TODO:Check for numeric letters (such as a Roman numeral character),combining marks,non-spacing marks |
| 189 | //add isIdentifierIgnorable(ch) |
| 190 | } |
| 191 | |
| 192 | public static boolean isJavaIdentifierPart(int c) { |
| 193 | return canCastToChar(c) && isJavaIdentifierPart((char) c); |
nothing calls this directly
no test coverage detected