MCPcopy Create free account
hub / github.com/MrNeRF/LichtFeld-Studio / is_identifier_start

Function is_identifier_start

external/zep/src/syntax_python.cpp:22–24  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

20 namespace {
21
22 bool is_identifier_start(uint8_t ch) {
23 return std::isalpha(static_cast<unsigned char>(ch)) != 0 || ch == '_';
24 }
25
26 bool is_identifier_continue(uint8_t ch) {
27 return std::isalnum(static_cast<unsigned char>(ch)) != 0 || ch == '_';

Callers 1

UpdateSyntaxMethod · 0.85

Calls

no outgoing calls

Tested by

no test coverage detected