Changeset 181867 in webkit for trunk/Source/JavaScriptCore/runtime/Structure.cpp
- Timestamp:
- Mar 23, 2015, 1:48:18 PM (10 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/Source/JavaScriptCore/runtime/Structure.cpp
r181297 r181867 829 829 #endif 830 830 831 #if !DO_PROPERTYMAP_CONSTENCY_CHECK832 833 inline void Structure::checkConsistency()834 {835 checkOffsetConsistency();836 }837 838 #endif839 840 831 PropertyTable* Structure::copyPropertyTable(VM& vm) 841 832 { … … 1134 1125 void PropertyTable::checkConsistency() 1135 1126 { 1136 checkOffsetConsistency();1137 1127 ASSERT(m_indexSize >= PropertyTable::MinimumTableSize); 1138 1128 ASSERT(m_indexMask); … … 1192 1182 void Structure::checkConsistency() 1193 1183 { 1184 checkOffsetConsistency(); 1185 1194 1186 if (!propertyTable()) 1195 1187 return; … … 1203 1195 1204 1196 propertyTable()->checkConsistency(); 1197 } 1198 1199 #else 1200 1201 inline void Structure::checkConsistency() 1202 { 1203 checkOffsetConsistency(); 1205 1204 } 1206 1205
Note:
See TracChangeset
for help on using the changeset viewer.