Code
Hub
Workspaces
Following
Trending
Connect
MCP
copy
Index your code
hub
/
github.com/antlr/codebuff
/ isIDStartLetter
Method
isIDStartLetter
output/java8/1.4.15/STLexer.java:647–649 ·
view source on GitHub ↗
(char c)
Source
from the content-addressed store, hash-verified
645
}
646
647
public
static
boolean isIDStartLetter(char c) {
648
return
isIDLetter(c);
649
}
650
651
public
static
boolean isIDLetter(char c) {
652
return
c>=
'a'
&& c <=
'z'
|| c>=
'A'
&& c <=
'Z'
|| c>=
'0'
&& c <=
'9'
|| c==
'_'
|| c==
'/'
;
Callers
1
inside
Method · 0.95
Calls
1
isIDLetter
Method · 0.95
Tested by
no test coverage detected