Changeset 77098 in webkit for trunk/Source/JavaScriptCore/runtime/Operations.h
- Timestamp:
- Jan 30, 2011, 5:13:10 PM (14 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/Source/JavaScriptCore/runtime/Operations.h
r77044 r77098 430 430 // should not be treated as a dictionary. 431 431 if (cell->structure()->isDictionary()) { 432 asObject(cell)->flattenDictionaryObject( );432 asObject(cell)->flattenDictionaryObject(callFrame->globalData()); 433 433 if (slotBase == cell) 434 434 slotOffset = cell->structure()->get(propertyName); … … 455 455 // should not be treated as a dictionary. 456 456 if (base->structure()->isDictionary()) 457 asObject(base)->flattenDictionaryObject( );457 asObject(base)->flattenDictionaryObject(callFrame->globalData()); 458 458 459 459 ++count; … … 472 472 JSObject* base; 473 473 while (true) { 474 base = *iter;474 base = iter->get(); 475 475 if (next == end) 476 476 return isStrictPut ? JSValue() : base;
Note:
See TracChangeset
for help on using the changeset viewer.