MCPcopy Create free account
hub / github.com/antlr/codebuff / isIDStartLetter

Method isIDStartLetter

output/java8/1.4.13/STLexer.java:623–625  ·  view source on GitHub ↗
(char c)

Source from the content-addressed store, hash-verified

621 }
622
623 public static boolean isIDStartLetter(char c) {
624 return isIDLetter(c);
625 }
626
627 public static boolean isIDLetter(char c) {
628 return c >='a' && c <='z' || c >='A' && c <='Z' || c >='0' && c <='9' || c=='_' || c=='/';

Callers 1

insideMethod · 0.95

Calls 1

isIDLetterMethod · 0.95

Tested by

no test coverage detected