MCPcopy Create free account
hub / github.com/ReadyTalk/avian / isJavaIdentifierStart

Method isJavaIdentifierStart

classpath/java/lang/Character.java:177–180  ·  view source on GitHub ↗
(char ch)

Source from the content-addressed store, hash-verified

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);

Callers 1

isJavaIdentifierPartMethod · 0.95

Calls 2

isLetterMethod · 0.95
canCastToCharMethod · 0.95

Tested by

no test coverage detected