Changeset 50704 in webkit for trunk/JavaScriptCore/jit/JITStubs.cpp
- Timestamp:
- Nov 9, 2009, 6:19:04 PM (16 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/JavaScriptCore/jit/JITStubs.cpp
r50443 r50704 772 772 // should not be treated as a dictionary. 773 773 if (slotBaseObject->structure()->isDictionary()) 774 slotBaseObject-> setStructure(Structure::fromDictionaryTransition(slotBaseObject->structure()));774 slotBaseObject->flattenDictionaryObject(); 775 775 776 776 stubInfo->initGetByIdProto(structure, slotBaseObject->structure()); … … 1182 1182 // should not be treated as a dictionary. 1183 1183 if (slotBaseObject->structure()->isDictionary()) 1184 slotBaseObject-> setStructure(Structure::fromDictionaryTransition(slotBaseObject->structure()));1184 slotBaseObject->flattenDictionaryObject(); 1185 1185 1186 1186 // The result fetched should always be the callee! … … 1335 1335 // should not be treated as a dictionary. 1336 1336 if (slotBaseObject->structure()->isDictionary()) 1337 slotBaseObject-> setStructure(Structure::fromDictionaryTransition(slotBaseObject->structure()));1337 slotBaseObject->flattenDictionaryObject(); 1338 1338 1339 1339 int listIndex;
Note:
See TracChangeset
for help on using the changeset viewer.