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