Changeset 168631 in webkit for trunk/Source/JavaScriptCore/runtime/JSObject.cpp
- Timestamp:
- May 12, 2014, 11:26:17 AM (11 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/Source/JavaScriptCore/runtime/JSObject.cpp
r167394 r168631 166 166 ASSERT(butterfly); 167 167 168 Structure* structure = this->structure( );168 Structure* structure = this->structure(visitor.vm()); 169 169 170 170 size_t propertyCapacity = structure->outOfLineCapacity(); … … 215 215 Butterfly* butterfly = thisObject->butterfly(); 216 216 if (butterfly) 217 thisObject->visitButterfly(visitor, butterfly, thisObject->structure( )->outOfLineSize());217 thisObject->visitButterfly(visitor, butterfly, thisObject->structure(visitor.vm())->outOfLineSize()); 218 218 219 219 #if !ASSERT_DISABLED
Note:
See TracChangeset
for help on using the changeset viewer.