mirror of
https://github.com/LadybirdBrowser/ladybird.git
synced 2025-09-01 07:07:49 +00:00
LibUnicode: Generate General Category unions and aliases
This downloads the PropertyValueAliases.txt UCD file, which contains a set of General Category aliases. This changes the General Category enumeration to now be generated as a bitmask. This is to easily allow General Category unions. For example, the LC (Cased_Letter) category is the union of the Ll, Lu, and Lt categories.
This commit is contained in:
parent
f87cc85cd3
commit
16e86ae743
Notes:
sideshowbarker
2024-07-18 07:34:38 +09:00
Author: https://github.com/trflynn89
Commit: 16e86ae743
Pull-request: https://github.com/SerenityOS/serenity/pull/9142
Reviewed-by: https://github.com/alimpfard
3 changed files with 76 additions and 7 deletions
|
@ -11,7 +11,7 @@
|
|||
namespace Unicode {
|
||||
|
||||
enum class Condition;
|
||||
enum class GeneralCategory;
|
||||
enum class GeneralCategory : u64;
|
||||
enum class Locale;
|
||||
enum class Property : u64;
|
||||
enum class WordBreakProperty;
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue