Changeset 94919 in webkit


Ignore:
Timestamp:
Sep 10, 2011 10:24:02 PM (13 years ago)
Author:
weinig@apple.com
Message:

Remove JSC::isZombie() function, it did nothing and was called by no-one.
https://bugs.webkit.org/show_bug.cgi?id=67901

Reviewed by Andy Estes.

Location:
trunk/Source/JavaScriptCore
Files:
4 edited

Legend:

Unmodified
Added
Removed
  • trunk/Source/JavaScriptCore/ChangeLog

    r94918 r94919  
     12011-09-10  Sam Weinig  <sam@webkit.org>
     2
     3        Remove JSC::isZombie() function, it did nothing and was called by no-one.
     4        https://bugs.webkit.org/show_bug.cgi?id=67901
     5
     6        Reviewed by Andy Estes.
     7
     8        * JavaScriptCore.exp:
     9        * runtime/JSCell.cpp:
     10        * runtime/JSValue.h:
     11
    1122011-09-10  Sam Weinig  <sam@webkit.org>
    213
  • trunk/Source/JavaScriptCore/JavaScriptCore.exp

    r94918 r94919  
    337337__ZN3JSC8Profiler8profilerEv
    338338__ZN3JSC8evaluateEPNS_9ExecStateEPNS_14ScopeChainNodeERKNS_10SourceCodeENS_7JSValueEPS7_
    339 __ZN3JSC8isZombieEPKNS_6JSCellE
    340339__ZN3JSC9CodeBlockD1Ev
    341340__ZN3JSC9CodeBlockD2Ev
  • trunk/Source/JavaScriptCore/runtime/JSCell.cpp

    r94774 r94919  
    159159}
    160160
    161 bool isZombie(const JSCell* cell)
    162 {
    163     UNUSED_PARAM(cell);
    164     return false;
    165 }
    166 
    167161void slowValidateCell(JSCell* cell)
    168162{
  • trunk/Source/JavaScriptCore/runtime/JSValue.h

    r94095 r94919  
    459459    inline bool operator!=(const JSCell* a, const JSValue b) { return JSValue(a) != b; }
    460460
    461     bool isZombie(const JSCell*);
    462 
    463461} // namespace JSC
    464462
Note: See TracChangeset for help on using the changeset viewer.