Code
Hub
Workspaces
Following
Trending
Connect
MCP
copy
Create free account
hub
/
github.com/GDRETools/gdsdecomp
/ _is_text_char
Function
_is_text_char
bytecode/gdscript_v1_tokenizer_compat.cpp:241–243 ·
view source on GitHub ↗
Source
from the content-addressed store, hash-verified
239
*/
240
241
static bool _is_text_char(CharType c) {
242
return (c >=
'a'
&& c <=
'z'
) || (c >=
'A'
&& c <=
'Z'
) || (c >=
'0'
&& c <=
'9'
) || c ==
'_'
;
243
}
244
245
static bool _is_number(CharType c) {
246
return (c >=
'0'
&& c <=
'9'
);
Callers
1
_advance
Method · 0.85
Calls
no outgoing calls
Tested by
no test coverage detected