Changeset 268170 in webkit for trunk/Source/JavaScriptCore/runtime/PutPropertySlot.h
- Timestamp:
- Oct 7, 2020, 9:18:58 PM (5 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/Source/JavaScriptCore/runtime/PutPropertySlot.h
r267163 r268170 67 67 } 68 68 69 void setCustomValue(JSObject* base, FunctionPtr<OperationPtrTag>function)69 void setCustomValue(JSObject* base, PutValueFunc function) 70 70 { 71 71 m_type = CustomValue; … … 74 74 } 75 75 76 void setCustomAccessor(JSObject* base, FunctionPtr<OperationPtrTag>function)76 void setCustomAccessor(JSObject* base, PutValueFunc function) 77 77 { 78 78 m_type = CustomAccessor; … … 98 98 } 99 99 100 FunctionPtr< OperationPtrTag> customSetter() const100 FunctionPtr<PutValuePtrTag> customSetter() const 101 101 { 102 102 ASSERT(isCacheableCustom()); … … 138 138 uint8_t m_context; 139 139 CacheabilityType m_cacheability; 140 FunctionPtr< OperationPtrTag> m_putFunction;140 FunctionPtr<PutValuePtrTag> m_putFunction; 141 141 }; 142 142
Note:
See TracChangeset
for help on using the changeset viewer.