Changeset 197533 in webkit for trunk/Source/JavaScriptCore/runtime/ProxyObject.h
- Timestamp:
- Mar 3, 2016, 5:07:04 PM (9 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/Source/JavaScriptCore/runtime/ProxyObject.h
r197420 r197533 72 72 static bool preventExtensions(JSObject*, ExecState*); 73 73 static bool isExtensible(JSObject*, ExecState*); 74 static bool defineOwnProperty(JSObject*, ExecState*, PropertyName, const PropertyDescriptor&, bool shouldThrow); 74 75 static void visitChildren(JSCell*, SlotVisitor&); 75 76 … … 83 84 bool performPreventExtensions(ExecState*); 84 85 bool performIsExtensible(ExecState*); 86 bool performDefineOwnProperty(ExecState*, PropertyName, const PropertyDescriptor&, bool shouldThrow); 85 87 86 88 WriteBarrier<JSObject> m_target;
Note:
See TracChangeset
for help on using the changeset viewer.