diff options
author | Fabrice Bellard <fabrice@bellard.org> | 2025-05-16 17:43:03 +0200 |
---|---|---|
committer | Fabrice Bellard <fabrice@bellard.org> | 2025-05-16 17:43:03 +0200 |
commit | d7cdfdc8d7b8e74a6be74f4f3535ef6eac976dc1 (patch) | |
tree | 8d42c1f5a55f57a03d187f75bb90f8296d7f12a0 /unicode_gen_def.h | |
parent | a8b2d7c2b2751130000b74ac7d831fd75a0abbc3 (diff) | |
download | quickjs-d7cdfdc8d7b8e74a6be74f4f3535ef6eac976dc1.tar.gz quickjs-d7cdfdc8d7b8e74a6be74f4f3535ef6eac976dc1.zip |
regexp: added v flag support - fixed corner cases of case insensitive matching
Diffstat (limited to 'unicode_gen_def.h')
-rw-r--r-- | unicode_gen_def.h | 15 |
1 files changed, 15 insertions, 0 deletions
diff --git a/unicode_gen_def.h b/unicode_gen_def.h index f2a3216..95c369f 100644 --- a/unicode_gen_def.h +++ b/unicode_gen_def.h @@ -234,6 +234,11 @@ DEF(XID_Continue1, "") DEF(Changes_When_Titlecased1, "") DEF(Changes_When_Casefolded1, "") DEF(Changes_When_NFKC_Casefolded1, "") +DEF(Basic_Emoji1, "") +DEF(Basic_Emoji2, "") +DEF(RGI_Emoji_Modifier_Sequence, "") +DEF(RGI_Emoji_Flag_Sequence, "") +DEF(Emoji_Keycap_Sequence, "") /* Prop list exported to JS */ DEF(ASCII_Hex_Digit, "AHex") @@ -301,3 +306,13 @@ DEF(XID_Start, "XIDS") DEF(Cased1, "") #endif + +#ifdef UNICODE_SEQUENCE_PROP_LIST +DEF(Basic_Emoji) +DEF(Emoji_Keycap_Sequence) +DEF(RGI_Emoji_Modifier_Sequence) +DEF(RGI_Emoji_Flag_Sequence) +DEF(RGI_Emoji_Tag_Sequence) +DEF(RGI_Emoji_ZWJ_Sequence) +DEF(RGI_Emoji) +#endif |