Changeset 99767 in webkit


Ignore:
Timestamp:
Nov 9, 2011, 3:14:53 PM (14 years ago)
Author:
mhahnenberg@apple.com
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.
Location:
trunk/Source/JavaScriptCore
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • trunk/Source/JavaScriptCore/ChangeLog

    r99765 r99767  
     12011-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
    1102011-11-09  Gavin Barraclough  <barraclough@apple.com>
    211
  • trunk/Source/JavaScriptCore/runtime/JSGlobalObject.h

    r99754 r99767  
    185185        static bool getOwnPropertySlot(JSCell*, ExecState*, const Identifier&, PropertySlot&);
    186186        static bool getOwnPropertyDescriptor(JSObject*, ExecState*, const Identifier&, PropertyDescriptor&);
    187         virtual bool hasOwnPropertyForWrite(ExecState*, const Identifier&);
     187        bool hasOwnPropertyForWrite(ExecState*, const Identifier&);
    188188        static void put(JSCell*, ExecState*, const Identifier&, JSValue, PutPropertySlot&);
    189189
Note: See TracChangeset for help on using the changeset viewer.