1
Fork 0
mirror of https://github.com/RGBCube/serenity synced 2025-07-26 12:37:45 +00:00

LibJS+LibUnicode: Rename the generated compact_identifier to identifier

This field is currently used to store the StringView into the compact
name/symbol in the format string. Units will need to store a similar
field, so rename the field to be more generic, and extract the parser
for it.
This commit is contained in:
Timothy Flynn 2021-11-16 10:09:17 -05:00 committed by Linus Groh
parent 6d34a0b4e8
commit 3b68370212
3 changed files with 49 additions and 41 deletions

View file

@ -122,7 +122,7 @@ struct NumberFormat {
StringView zero_format {};
StringView positive_format {};
StringView negative_format {};
StringView compact_identifier {};
StringView identifier {};
};
struct ListPatterns {