MCPcopy Create free account
hub / github.com/crownengine/crown / is_lua_identifier_char

Function is_lua_identifier_char

src/lua/lua_environment.cpp:712–718  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

710}
711
712static bool is_lua_identifier_char(char ch)
713{
714 return isalnum(ch) != 0
715 || ch == '_'
716 || ch == '.'
717 ;
718}
719
720static void append_suggestion_item(StringStream &ss, bool &first, const char *table_prefix, const char *key, const char *child_key)
721{

Callers 1

console_command_suggestFunction · 0.85

Calls

no outgoing calls

Tested by

no test coverage detected