Changeset 129458 in webkit for trunk/Source/JavaScriptCore/runtime/SparseArrayValueMap.cpp
- Timestamp:
- Sep 24, 2012, 11:12:11 PM (13 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/Source/JavaScriptCore/runtime/SparseArrayValueMap.cpp
r128802 r129458 160 160 CallData callData; 161 161 CallType callType = getter->methodTable()->getCallData(getter, callData); 162 return call(exec, getter, callType, callData, array , exec->emptyList());162 return call(exec, getter, callType, callData, array->methodTable()->toThisObject(array, exec), exec->emptyList()); 163 163 } 164 164 … … 190 190 MarkedArgumentBuffer args; 191 191 args.append(value); 192 if (thisValue.isObject()) 193 thisValue = asObject(thisValue)->methodTable()->toThisObject(asObject(thisValue), exec); 192 194 call(exec, setter, callType, callData, thisValue, args); 193 195 }
Note:
See TracChangeset
for help on using the changeset viewer.