Bug 213587

Summary: [Intl] Disprefer using ICU enums directly as instance variables
Product: WebKit Reporter: Ross Kirsling <ross.kirsling>
Component: New BugsAssignee: Ross Kirsling <ross.kirsling>
Status: RESOLVED FIXED    
Severity: Normal CC: darin, ews-watchlist, keith_miller, mark.lam, msaboff, saam, tzagallo, webkit-bug-importer, ysuzuki
Priority: P2 Keywords: InRadar
Version: WebKit Nightly Build   
Hardware: Unspecified   
OS: Unspecified   
Attachments:
Description Flags
Patch
none
Patch for landing none

Ross Kirsling
Reported 2020-06-24 19:09:44 PDT
[Intl] Disprefer using ICU enums directly as instance variables
Attachments
Patch (9.05 KB, patch)
2020-06-24 19:11 PDT, Ross Kirsling
no flags
Patch for landing (9.33 KB, patch)
2020-06-24 19:32 PDT, Ross Kirsling
no flags
Ross Kirsling
Comment 1 2020-06-24 19:11:12 PDT
Ross Kirsling
Comment 2 2020-06-24 19:12:46 PDT
Here's the patch whether we choose to use it or not. Either way, IntlPluralRules is 72 bytes (padding 6 → 9) and IntlRelativeTimeFormat is 56 bytes (padding 3 → 6).
Yusuke Suzuki
Comment 3 2020-06-24 19:27:31 PDT
Comment on attachment 402707 [details] Patch View in context: https://bugs.webkit.org/attachment.cgi?id=402707&action=review r=me > Source/JavaScriptCore/runtime/IntlPluralRules.h:83 > + bool m_isOrdinal { false }; I think `enum class OrdinalType : uint8_t { Ordinal, Cardinal };` would be better.
Ross Kirsling
Comment 4 2020-06-24 19:32:50 PDT
Created attachment 402708 [details] Patch for landing
EWS
Comment 5 2020-06-24 20:58:12 PDT
Committed r263497: <https://trac.webkit.org/changeset/263497> All reviewed patches have been landed. Closing bug and clearing flags on attachment 402708 [details].
Darin Adler
Comment 6 2020-06-25 12:33:40 PDT
Comment on attachment 402707 [details] Patch View in context: https://bugs.webkit.org/attachment.cgi?id=402707&action=review >> Source/JavaScriptCore/runtime/IntlPluralRules.h:83 >> + bool m_isOrdinal { false }; > > I think `enum class OrdinalType : uint8_t { Ordinal, Cardinal };` would be better. Why not "enum class OrdinalType : bool { Cardinal, Ordinal };"?
Ross Kirsling
Comment 7 2020-06-25 12:37:16 PDT
(In reply to Darin Adler from comment #6) > Comment on attachment 402707 [details] > Patch > > View in context: > https://bugs.webkit.org/attachment.cgi?id=402707&action=review > > >> Source/JavaScriptCore/runtime/IntlPluralRules.h:83 > >> + bool m_isOrdinal { false }; > > > > I think `enum class OrdinalType : uint8_t { Ordinal, Cardinal };` would be better. > > Why not "enum class OrdinalType : bool { Cardinal, Ordinal };"? I landed it as Type : bool.
Radar WebKit Bug Importer
Comment 8 2020-06-25 17:02:00 PDT
Note You need to log in before you can comment on or make changes to this bug.