Changeset 37981 in webkit for trunk/JavaScriptCore/runtime/StructureID.h
- Timestamp:
- Oct 29, 2008, 3:27:31 PM (17 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/JavaScriptCore/runtime/StructureID.h
r37938 r37981 150 150 TypeInfo m_typeInfo; 151 151 152 bool m_isDictionary;153 154 bool m_hasGetterSetterProperties;155 156 152 JSValue* m_prototype; 157 153 RefPtr<StructureIDChain> m_cachedPrototypeChain; … … 159 155 RefPtr<StructureID> m_previous; 160 156 UString::Rep* m_nameInPrevious; 161 unsigned m_attributesInPrevious;162 157 163 158 size_t m_transitionCount; 164 bool m_usingSingleTransitionSlot;165 159 union { 166 160 StructureID* singleTransition; … … 174 168 175 169 size_t m_cachedTransistionOffset; 170 171 bool m_isDictionary : 1; 172 bool m_hasGetterSetterProperties : 1; 173 bool m_usingSingleTransitionSlot : 1; 174 unsigned m_attributesInPrevious : 5; 176 175 }; 177 176
Note:
See TracChangeset
for help on using the changeset viewer.