1
Fork 0
mirror of https://github.com/RGBCube/serenity synced 2025-07-25 18:47:34 +00:00

LibJS: Expose offset to m_indexed_properties

This commit is contained in:
iliadsh 2023-11-09 08:55:59 +00:00 committed by Andreas Kling
parent cb933a3e4a
commit f91c3e9ac3

View file

@ -219,6 +219,7 @@ public:
void set_prototype(Object*);
static FlatPtr may_interfere_with_indexed_property_access_offset() { return OFFSET_OF(Object, m_may_interfere_with_indexed_property_access); }
static FlatPtr indexed_properties_offset() { return OFFSET_OF(Object, m_indexed_properties); }
protected:
enum class GlobalObjectTag { Tag };