Changeset 153691 in webkit for trunk/Source/JavaScriptCore/runtime/JSObject.cpp
- Timestamp:
- Aug 3, 2013, 5:12:21 PM (12 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/Source/JavaScriptCore/runtime/JSObject.cpp
r153673 r153691 103 103 size_t preCapacity; 104 104 size_t indexingPayloadSizeInBytes; 105 bool hasIndexingHeader = structure->hasIndexingHeader();105 bool hasIndexingHeader = this->hasIndexingHeader(); 106 106 if (UNLIKELY(hasIndexingHeader)) { 107 107 preCapacity = butterfly->indexingHeader()->preCapacity(structure); … … 174 174 size_t preCapacity; 175 175 size_t indexingPayloadSizeInBytes; 176 bool hasIndexingHeader = structure->hasIndexingHeader();176 bool hasIndexingHeader = this->hasIndexingHeader(); 177 177 if (UNLIKELY(hasIndexingHeader)) { 178 178 preCapacity = butterfly->indexingHeader()->preCapacity(structure);
Note:
See TracChangeset
for help on using the changeset viewer.