| 114 | } |
| 115 | |
| 116 | xsBooleanValue 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 | |
| 121 | xsBooleanValue fxIsKeyword(char* string, uint32_t length, xsBooleanValue* noRegExp) |
| 122 | { |