mirror of
https://github.com/LadybirdBrowser/ladybird.git
synced 2025-08-16 15:30:09 +00:00
LibGC+LibWeb+LibJS: Remove workaround for Swift boolean bitfield issue
We're using a main snapshot everywhere, so we can yeet the workaround.
This commit is contained in:
parent
e73438e82c
commit
8fd81c3338
Notes:
github-actions[bot]
2025-04-04 19:07:56 +00:00
Author: https://github.com/ADKaster
Commit: 8fd81c3338
Pull-request: https://github.com/LadybirdBrowser/ladybird/pull/4223
9 changed files with 39 additions and 51 deletions
|
@ -49,17 +49,17 @@ protected:
|
|||
explicit PlatformObject(JS::Object& prototype, MayInterfereWithIndexedPropertyAccess = MayInterfereWithIndexedPropertyAccess::No);
|
||||
|
||||
struct LegacyPlatformObjectFlags {
|
||||
u16 supports_indexed_properties BOOL_BITFIELD = false;
|
||||
u16 supports_named_properties BOOL_BITFIELD = false;
|
||||
u16 has_indexed_property_setter BOOL_BITFIELD = false;
|
||||
u16 has_named_property_setter BOOL_BITFIELD = false;
|
||||
u16 has_named_property_deleter BOOL_BITFIELD = false;
|
||||
u16 has_legacy_unenumerable_named_properties_interface_extended_attribute BOOL_BITFIELD = false;
|
||||
u16 has_legacy_override_built_ins_interface_extended_attribute BOOL_BITFIELD = false;
|
||||
u16 has_global_interface_extended_attribute BOOL_BITFIELD = false;
|
||||
u16 indexed_property_setter_has_identifier BOOL_BITFIELD = false;
|
||||
u16 named_property_setter_has_identifier BOOL_BITFIELD = false;
|
||||
u16 named_property_deleter_has_identifier BOOL_BITFIELD = false;
|
||||
u16 supports_indexed_properties : 1 = false;
|
||||
u16 supports_named_properties : 1 = false;
|
||||
u16 has_indexed_property_setter : 1 = false;
|
||||
u16 has_named_property_setter : 1 = false;
|
||||
u16 has_named_property_deleter : 1 = false;
|
||||
u16 has_legacy_unenumerable_named_properties_interface_extended_attribute : 1 = false;
|
||||
u16 has_legacy_override_built_ins_interface_extended_attribute : 1 = false;
|
||||
u16 has_global_interface_extended_attribute : 1 = false;
|
||||
u16 indexed_property_setter_has_identifier : 1 = false;
|
||||
u16 named_property_setter_has_identifier : 1 = false;
|
||||
u16 named_property_deleter_has_identifier : 1 = false;
|
||||
};
|
||||
Optional<LegacyPlatformObjectFlags> m_legacy_platform_object_flags = {};
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue