Changeset 94932 in webkit


Ignore:
Timestamp:
Sep 11, 2011 3:41:16 PM (13 years ago)
Author:
weinig@apple.com
Message:

Remove JSCell::isPropertyNameIterator(), it is unused
https://bugs.webkit.org/show_bug.cgi?id=67911

Reviewed by Oliver Hunt.

  • runtime/JSCell.h:
  • runtime/JSPropertyNameIterator.h:
Location:
trunk/Source/JavaScriptCore
Files:
3 edited

Legend:

Unmodified
Added
Removed
  • trunk/Source/JavaScriptCore/ChangeLog

    r94931 r94932  
     12011-09-11  Sam Weinig  <sam@webkit.org>
     2
     3        Remove JSCell::isPropertyNameIterator(), it is unused
     4        https://bugs.webkit.org/show_bug.cgi?id=67911
     5
     6        Reviewed by Oliver Hunt.
     7
     8        * runtime/JSCell.h:
     9        * runtime/JSPropertyNameIterator.h:
     10
    1112011-09-11  Sam Weinig  <sam@webkit.org>
    212
  • trunk/Source/JavaScriptCore/runtime/JSCell.h

    r94931 r94932  
    9191        bool inherits(const ClassInfo*) const;
    9292        bool isAPIValueWrapper() const;
    93         virtual bool isPropertyNameIterator() const { return false; }
    9493
    9594        Structure* structure() const;
  • trunk/Source/JavaScriptCore/runtime/JSPropertyNameIterator.h

    r94929 r94932  
    5858            return Structure::create(globalData, globalObject, prototype, TypeInfo(CompoundType, OverridesVisitChildren), &s_info);
    5959        }
    60 
    61         virtual bool isPropertyNameIterator() const { return true; }
    6260
    6361        virtual void visitChildren(SlotVisitor&);
Note: See TracChangeset for help on using the changeset viewer.