Changeset 153556 in webkit for trunk/Source/JavaScriptCore/runtime/SparseArrayValueMap.cpp
- Timestamp:
- Jul 31, 2013, 6:09:25 PM (12 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/Source/JavaScriptCore/runtime/SparseArrayValueMap.cpp
r153145 r153556 123 123 } 124 124 125 void SparseArrayEntry::get( PropertySlot& slot) const125 void SparseArrayEntry::get(JSObject* thisObject, PropertySlot& slot) const 126 126 { 127 127 JSValue value = Base::get(); … … 133 133 } 134 134 135 slot.setGetterSlot( jsCast<GetterSetter*>(value));135 slot.setGetterSlot(thisObject, jsCast<GetterSetter*>(value)); 136 136 } 137 137
Note:
See TracChangeset
for help on using the changeset viewer.