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

Method isUnicodeLetter

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

Source from the content-addressed store, hash-verified

633 }
634
635 public static boolean isUnicodeLetter(char c) {
636 return c >='a' && c <='f' || c >='A' && c <='F' || c >='0' && c <='9';
637 }
638
639 public Token newToken(int ttype) {
640 STToken t = new STToken(input, ttype, startCharIndex, input.index() -1);

Callers 1

UNICODEMethod · 0.95

Calls

no outgoing calls

Tested by

no test coverage detected