Title: [123989] trunk/Source/_javascript_Core
Revision
123989
Author
[email protected]
Date
2012-07-29 16:15:30 -0700 (Sun, 29 Jul 2012)

Log Message

PropertyNameArray::m_shouldCache is only assigned and never used
https://bugs.webkit.org/show_bug.cgi?id=92598

Reviewed by Dan Bernstein.

* runtime/PropertyNameArray.h:
(JSC::PropertyNameArray::PropertyNameArray):
(PropertyNameArray):

Modified Paths

Diff

Modified: trunk/Source/_javascript_Core/ChangeLog (123988 => 123989)


--- trunk/Source/_javascript_Core/ChangeLog	2012-07-29 22:55:51 UTC (rev 123988)
+++ trunk/Source/_javascript_Core/ChangeLog	2012-07-29 23:15:30 UTC (rev 123989)
@@ -1,3 +1,14 @@
+2012-07-29  Filip Pizlo  <[email protected]>
+
+        PropertyNameArray::m_shouldCache is only assigned and never used
+        https://bugs.webkit.org/show_bug.cgi?id=92598
+
+        Reviewed by Dan Bernstein.
+
+        * runtime/PropertyNameArray.h:
+        (JSC::PropertyNameArray::PropertyNameArray):
+        (PropertyNameArray):
+
 2012-07-29  Rik Cabanier  <[email protected]>
 
         Add ENABLE_CSS_COMPOSITING flag

Modified: trunk/Source/_javascript_Core/runtime/PropertyNameArray.h (123988 => 123989)


--- trunk/Source/_javascript_Core/runtime/PropertyNameArray.h	2012-07-29 22:55:51 UTC (rev 123988)
+++ trunk/Source/_javascript_Core/runtime/PropertyNameArray.h	2012-07-29 23:15:30 UTC (rev 123989)
@@ -1,5 +1,5 @@
 /*
- *  Copyright (C) 2006, 2008 Apple Inc. All rights reserved.
+ *  Copyright (C) 2006, 2008, 2012 Apple Inc. All rights reserved.
  *
  *  This library is free software; you can redistribute it and/or
  *  modify it under the terms of the GNU Library General Public
@@ -55,14 +55,12 @@
         PropertyNameArray(JSGlobalData* globalData)
             : m_data(PropertyNameArrayData::create())
             , m_globalData(globalData)
-            , m_shouldCache(true)
         {
         }
 
         PropertyNameArray(ExecState* exec)
             : m_data(PropertyNameArrayData::create())
             , m_globalData(&exec->globalData())
-            , m_shouldCache(true)
         {
         }
 
@@ -91,7 +89,6 @@
         RefPtr<PropertyNameArrayData> m_data;
         IdentifierSet m_set;
         JSGlobalData* m_globalData;
-        bool m_shouldCache;
     };
 
 } // namespace JSC
_______________________________________________
webkit-changes mailing list
[email protected]
http://lists.webkit.org/mailman/listinfo/webkit-changes

Reply via email to