| 2346 | } |
| 2347 | |
| 2348 | bool TextServer::is_valid_identifier(const String &p_string) const { |
| 2349 | return p_string.is_valid_unicode_identifier(); |
| 2350 | } |
| 2351 | |
| 2352 | bool TextServer::is_valid_letter(uint64_t p_unicode) const { |
| 2353 | return is_unicode_letter(p_unicode); |
no test coverage detected