Title: [94932] trunk/Source/_javascript_Core
Revision
94932
Author
[email protected]
Date
2011-09-11 15:41:16 -0700 (Sun, 11 Sep 2011)

Log 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:

Modified Paths

Diff

Modified: trunk/Source/_javascript_Core/ChangeLog (94931 => 94932)


--- trunk/Source/_javascript_Core/ChangeLog	2011-09-11 22:29:24 UTC (rev 94931)
+++ trunk/Source/_javascript_Core/ChangeLog	2011-09-11 22:41:16 UTC (rev 94932)
@@ -1,5 +1,15 @@
 2011-09-11  Sam Weinig  <[email protected]>
 
+        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:
+
+2011-09-11  Sam Weinig  <[email protected]>
+
         De-virtualize JSCell::isAPIValueWrapper
         https://bugs.webkit.org/show_bug.cgi?id=67909
 

Modified: trunk/Source/_javascript_Core/runtime/JSCell.h (94931 => 94932)


--- trunk/Source/_javascript_Core/runtime/JSCell.h	2011-09-11 22:29:24 UTC (rev 94931)
+++ trunk/Source/_javascript_Core/runtime/JSCell.h	2011-09-11 22:41:16 UTC (rev 94932)
@@ -90,7 +90,6 @@
         bool isGetterSetter() const;
         bool inherits(const ClassInfo*) const;
         bool isAPIValueWrapper() const;
-        virtual bool isPropertyNameIterator() const { return false; }
 
         Structure* structure() const;
 

Modified: trunk/Source/_javascript_Core/runtime/JSPropertyNameIterator.h (94931 => 94932)


--- trunk/Source/_javascript_Core/runtime/JSPropertyNameIterator.h	2011-09-11 22:29:24 UTC (rev 94931)
+++ trunk/Source/_javascript_Core/runtime/JSPropertyNameIterator.h	2011-09-11 22:41:16 UTC (rev 94932)
@@ -58,8 +58,6 @@
             return Structure::create(globalData, globalObject, prototype, TypeInfo(CompoundType, OverridesVisitChildren), &s_info);
         }
 
-        virtual bool isPropertyNameIterator() const { return true; }
-
         virtual void visitChildren(SlotVisitor&);
 
         bool getOffset(size_t i, int& offset)
_______________________________________________
webkit-changes mailing list
[email protected]
http://lists.webkit.org/mailman/listinfo.cgi/webkit-changes

Reply via email to