Changeset 197042 in webkit for trunk/Source/JavaScriptCore/runtime/ProxyObject.h
- Timestamp:
- Feb 24, 2016, 12:43:21 PM (9 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/Source/JavaScriptCore/runtime/ProxyObject.h
r196868 r197042 64 64 static CallType getCallData(JSCell*, CallData&); 65 65 static ConstructType getConstructData(JSCell*, ConstructData&); 66 static bool deleteProperty(JSCell*, ExecState*, PropertyName); 67 static bool deletePropertyByIndex(JSCell*, ExecState*, unsigned propertyName); 66 68 static void visitChildren(JSCell*, SlotVisitor&); 67 69 … … 69 71 bool performInternalMethodGetOwnProperty(ExecState*, PropertyName, PropertySlot&); 70 72 bool performHasProperty(ExecState*, PropertyName, PropertySlot&); 73 template <typename DefaultDeleteFunction> 74 bool performDelete(ExecState*, PropertyName, DefaultDeleteFunction); 71 75 72 76 WriteBarrier<JSObject> m_target;
Note:
See TracChangeset
for help on using the changeset viewer.