Title: [99767] trunk/Source/_javascript_Core
Revision
99767
Author
[email protected]
Date
2011-11-09 15:14:53 -0800 (Wed, 09 Nov 2011)

Log Message

De-virtualize JSGlobalObject::hasOwnPropertyForWrite
https://bugs.webkit.org/show_bug.cgi?id=71934

Reviewed by Geoffrey Garen.

* runtime/JSGlobalObject.h: Removed the virtual-ness of hasOwnPropertyForWrite since nobody overrides it.

Modified Paths

Diff

Modified: trunk/Source/_javascript_Core/ChangeLog (99766 => 99767)


--- trunk/Source/_javascript_Core/ChangeLog	2011-11-09 23:13:59 UTC (rev 99766)
+++ trunk/Source/_javascript_Core/ChangeLog	2011-11-09 23:14:53 UTC (rev 99767)
@@ -1,3 +1,12 @@
+2011-11-09  Mark Hahnenberg  <[email protected]>
+
+        De-virtualize JSGlobalObject::hasOwnPropertyForWrite
+        https://bugs.webkit.org/show_bug.cgi?id=71934
+
+        Reviewed by Geoffrey Garen.
+
+        * runtime/JSGlobalObject.h: Removed the virtual-ness of hasOwnPropertyForWrite since nobody overrides it.
+
 2011-11-09  Gavin Barraclough  <[email protected]>
 
         https://bugs.webkit.org/show_bug.cgi?id=71873

Modified: trunk/Source/_javascript_Core/runtime/JSGlobalObject.h (99766 => 99767)


--- trunk/Source/_javascript_Core/runtime/JSGlobalObject.h	2011-11-09 23:13:59 UTC (rev 99766)
+++ trunk/Source/_javascript_Core/runtime/JSGlobalObject.h	2011-11-09 23:14:53 UTC (rev 99767)
@@ -184,7 +184,7 @@
 
         static bool getOwnPropertySlot(JSCell*, ExecState*, const Identifier&, PropertySlot&);
         static bool getOwnPropertyDescriptor(JSObject*, ExecState*, const Identifier&, PropertyDescriptor&);
-        virtual bool hasOwnPropertyForWrite(ExecState*, const Identifier&);
+        bool hasOwnPropertyForWrite(ExecState*, const Identifier&);
         static void put(JSCell*, ExecState*, const Identifier&, JSValue, PutPropertySlot&);
 
         static void putWithAttributes(JSObject*, ExecState*, const Identifier& propertyName, JSValue, unsigned attributes);
_______________________________________________
webkit-changes mailing list
[email protected]
http://lists.webkit.org/mailman/listinfo.cgi/webkit-changes

Reply via email to