MCPcopy Create free account
hub / github.com/Moddable-OpenSource/moddable / fxIsJSIdentifierFirst

Function fxIsJSIdentifierFirst

modules/piu/PC/Code/piuCodeJS.c:111–114  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

109}
110
111xsBooleanValue fxIsJSIdentifierFirst(uint32_t c)
112{
113 return ((('A' <= c) && (c <= 'Z')) || (('a' <= c) && (c <= 'z')) || (c == '$') || (c == '_')) ? 1 : 0;
114}
115
116xsBooleanValue fxIsJSIdentifierNext(uint32_t c)
117{

Callers 1

fxParseJSCodeFunction · 0.85

Calls

no outgoing calls

Tested by

no test coverage detected