Changeset 169815 in webkit for trunk/Source/JavaScriptCore/runtime/JSObject.cpp
- Timestamp:
- Jun 11, 2014, 11:40:13 AM (11 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/Source/JavaScriptCore/runtime/JSObject.cpp
r169740 r169815 1689 1689 } 1690 1690 slot.setCacheableGetterSlot(this, attributes, jsCast<GetterSetter*>(getterSetter), offset); 1691 }1692 1693 NEVER_INLINE void JSObject::fillCustomGetterPropertySlot(PropertySlot& slot, JSValue customGetterSetter, unsigned attributes)1694 {1695 if (structure()->isDictionary()) {1696 slot.setCustom(this, attributes, jsCast<CustomGetterSetter*>(customGetterSetter)->getter());1697 return;1698 }1699 slot.setCacheableCustom(this, attributes, jsCast<CustomGetterSetter*>(customGetterSetter)->getter());1700 1691 } 1701 1692
Note:
See TracChangeset
for help on using the changeset viewer.