WebKit Bugzilla
New
Browse
Log In
×
Sign in with GitHub
or
Remember my login
Create Account
·
Forgot Password
Forgotten password account recovery
RESOLVED FIXED
213587
[Intl] Disprefer using ICU enums directly as instance variables
https://bugs.webkit.org/show_bug.cgi?id=213587
Summary
[Intl] Disprefer using ICU enums directly as instance variables
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
Details
Formatted Diff
Diff
Patch for landing
(9.33 KB, patch)
2020-06-24 19:32 PDT
,
Ross Kirsling
no flags
Details
Formatted Diff
Diff
Show Obsolete
(1)
View All
Add attachment
proposed patch, testcase, etc.
Ross Kirsling
Comment 1
2020-06-24 19:11:12 PDT
Created
attachment 402707
[details]
Patch
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
<
rdar://problem/64781188
>
Note
You need to
log in
before you can comment on or make changes to this bug.
Top of Page
Format For Printing
XML
Clone This Bug