Changeset 99767 in webkit
- Timestamp:
- Nov 9, 2011, 3:14:53 PM (14 years ago)
- Location:
- trunk/Source/JavaScriptCore
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/Source/JavaScriptCore/ChangeLog
r99765 r99767 1 2011-11-09 Mark Hahnenberg <mhahnenberg@apple.com> 2 3 De-virtualize JSGlobalObject::hasOwnPropertyForWrite 4 https://bugs.webkit.org/show_bug.cgi?id=71934 5 6 Reviewed by Geoffrey Garen. 7 8 * runtime/JSGlobalObject.h: Removed the virtual-ness of hasOwnPropertyForWrite since nobody overrides it. 9 1 10 2011-11-09 Gavin Barraclough <barraclough@apple.com> 2 11 -
trunk/Source/JavaScriptCore/runtime/JSGlobalObject.h
r99754 r99767 185 185 static bool getOwnPropertySlot(JSCell*, ExecState*, const Identifier&, PropertySlot&); 186 186 static bool getOwnPropertyDescriptor(JSObject*, ExecState*, const Identifier&, PropertyDescriptor&); 187 virtualbool hasOwnPropertyForWrite(ExecState*, const Identifier&);187 bool hasOwnPropertyForWrite(ExecState*, const Identifier&); 188 188 static void put(JSCell*, ExecState*, const Identifier&, JSValue, PutPropertySlot&); 189 189
Note:
See TracChangeset
for help on using the changeset viewer.