1
Fork 0
mirror of https://github.com/RGBCube/serenity synced 2025-07-25 15:57:45 +00:00

LibUnicode: Parse UCD Scripts.txt and generate as a Unicode property

There are a couple of minor nuances with parsing script values, compared
to other properties. In Scripts.txt, the UCD file lists the full name of
each script; other properties, like General Category, list the shorter
name in their primary files. This means that the aliases listed in
PropertyValueAliases.txt are reversed for script values.
This commit is contained in:
Timothy Flynn 2021-08-03 17:11:19 -04:00 committed by Linus Groh
parent 619c924042
commit f5c1bbc00b
5 changed files with 112 additions and 29 deletions

View file

@ -14,6 +14,7 @@ enum class Condition;
enum class GeneralCategory : u64;
enum class Locale;
enum class Property : u64;
enum class Script;
enum class WordBreakProperty;
struct SpecialCasing;