summaryrefslogtreecommitdiffstats
path: root/modules/text_server_adv/text_server_adv.h
diff options
context:
space:
mode:
authorbruvzg <7645683+bruvzg@users.noreply.github.com>2021-10-18 15:07:11 +0300
committerbruvzg <7645683+bruvzg@users.noreply.github.com>2022-08-02 08:30:20 +0300
commit5aa48b6ae5f44f16b3bf62c7c1c3501295132142 (patch)
treeb3c14c8621d4dfd82d8c3df84962ed31a43df9ae /modules/text_server_adv/text_server_adv.h
parentde53e91b856aba0e0ac100707376c8de9f50b4d1 (diff)
downloadredot-engine-5aa48b6ae5f44f16b3bf62c7c1c3501295132142.tar.gz
[TextServer] Implement ICU/UAX 31 based `is_valid_identifier` function.
Diffstat (limited to 'modules/text_server_adv/text_server_adv.h')
-rw-r--r--modules/text_server_adv/text_server_adv.h1
1 files changed, 1 insertions, 0 deletions
diff --git a/modules/text_server_adv/text_server_adv.h b/modules/text_server_adv/text_server_adv.h
index 8cd0e753ba..170d92f8fc 100644
--- a/modules/text_server_adv/text_server_adv.h
+++ b/modules/text_server_adv/text_server_adv.h
@@ -702,6 +702,7 @@ public:
virtual PackedInt32Array string_get_word_breaks(const String &p_string, const String &p_language = "") const override;
virtual String strip_diacritics(const String &p_string) const override;
+ virtual bool is_valid_identifier(const String &p_string) const override;
virtual String string_to_upper(const String &p_string, const String &p_language = "") const override;
virtual String string_to_lower(const String &p_string, const String &p_language = "") const override;