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

Function fxIsJSIdentifierNext

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

Source from the content-addressed store, hash-verified

114}
115
116xsBooleanValue fxIsJSIdentifierNext(uint32_t c)
117{
118 return ((('0' <= c) && (c <= '9')) || (('A' <= c) && (c <= 'Z')) || (('a' <= c) && (c <= 'z')) || (c == '$') || (c == '_')) ? 1 : 0;
119}
120
121xsBooleanValue fxIsKeyword(char* string, uint32_t length, xsBooleanValue* noRegExp)
122{

Callers 1

fxParseJSCodeFunction · 0.85

Calls

no outgoing calls

Tested by

no test coverage detected