LibJS: Remove unused variable m_has_property_table in Shape

This commit is contained in:
Luke 2020-11-07 00:27:50 +00:00 committed by Andreas Kling
parent 020b782474
commit f5aad71c15
Notes: sideshowbarker 2024-07-19 01:32:05 +09:00

View file

@ -106,7 +106,6 @@ private:
PropertyAttributes m_attributes { 0 };
TransitionType m_transition_type : 6 { TransitionType::Invalid };
bool m_unique : 1 { false };
mutable bool m_has_property_table : 1 { false };
GlobalObject& m_global_object;