Changeset 153556 in webkit for trunk/Source/JavaScriptCore/runtime/JSObject.cpp
- Timestamp:
- Jul 31, 2013, 6:09:25 PM (12 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/Source/JavaScriptCore/runtime/JSObject.cpp
r153532 r153556 320 320 SparseArrayValueMap::iterator it = map->find(i); 321 321 if (it != map->notFound()) { 322 it->value.get( slot);322 it->value.get(thisObject, slot); 323 323 return true; 324 324 } … … 1624 1624 { 1625 1625 if (structure()->isDictionary()) { 1626 slot.setGetterSlot( jsCast<GetterSetter*>(getterSetter));1626 slot.setGetterSlot(this, jsCast<GetterSetter*>(getterSetter)); 1627 1627 return; 1628 1628 }
Note:
See TracChangeset
for help on using the changeset viewer.