MCPcopy Index your code
hub / github.com/antlr/codebuff / isIDLetter

Method isIDLetter

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

Source from the content-addressed store, hash-verified

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=='/';
629 }
630
631 public static boolean isWS(char c) {
632 return c==' ' || c=='\t' || c=='\n' || c=='\r';

Callers 2

mIDMethod · 0.95
isIDStartLetterMethod · 0.95

Calls

no outgoing calls

Tested by

no test coverage detected