Title: [94919] trunk/Source/_javascript_Core
Revision
94919
Author
[email protected]
Date
2011-09-10 22:24:02 -0700 (Sat, 10 Sep 2011)

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

* _javascript_Core.exp:
* runtime/JSCell.cpp:
* runtime/JSValue.h:

Modified Paths

Diff

Modified: trunk/Source/_javascript_Core/ChangeLog (94918 => 94919)


--- trunk/Source/_javascript_Core/ChangeLog	2011-09-11 05:16:09 UTC (rev 94918)
+++ trunk/Source/_javascript_Core/ChangeLog	2011-09-11 05:24:02 UTC (rev 94919)
@@ -1,5 +1,16 @@
 2011-09-10  Sam Weinig  <[email protected]>
 
+        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.
+
+        * _javascript_Core.exp:
+        * runtime/JSCell.cpp:
+        * runtime/JSValue.h:
+
+2011-09-10  Sam Weinig  <[email protected]>
+
         Add isInterruptedExecutionException and isTerminatedExecutionException predicates
         https://bugs.webkit.org/show_bug.cgi?id=67892
 

Modified: trunk/Source/_javascript_Core/_javascript_Core.exp (94918 => 94919)


--- trunk/Source/_javascript_Core/_javascript_Core.exp	2011-09-11 05:16:09 UTC (rev 94918)
+++ trunk/Source/_javascript_Core/_javascript_Core.exp	2011-09-11 05:24:02 UTC (rev 94919)
@@ -336,7 +336,6 @@
 __ZN3JSC8Profiler14startProfilingEPNS_9ExecStateERKNS_7UStringE
 __ZN3JSC8Profiler8profilerEv
 __ZN3JSC8evaluateEPNS_9ExecStateEPNS_14ScopeChainNodeERKNS_10SourceCodeENS_7JSValueEPS7_
-__ZN3JSC8isZombieEPKNS_6JSCellE
 __ZN3JSC9CodeBlockD1Ev
 __ZN3JSC9CodeBlockD2Ev
 __ZN3JSC9Structure21addPropertyTransitionERNS_12JSGlobalDataEPS0_RKNS_10IdentifierEjPNS_6JSCellERm

Modified: trunk/Source/_javascript_Core/runtime/JSCell.cpp (94918 => 94919)


--- trunk/Source/_javascript_Core/runtime/JSCell.cpp	2011-09-11 05:16:09 UTC (rev 94918)
+++ trunk/Source/_javascript_Core/runtime/JSCell.cpp	2011-09-11 05:24:02 UTC (rev 94919)
@@ -158,12 +158,6 @@
     return 0;
 }
 
-bool isZombie(const JSCell* cell)
-{
-    UNUSED_PARAM(cell);
-    return false;
-}
-
 void slowValidateCell(JSCell* cell)
 {
     ASSERT_GC_OBJECT_LOOKS_VALID(cell);

Modified: trunk/Source/_javascript_Core/runtime/JSValue.h (94918 => 94919)


--- trunk/Source/_javascript_Core/runtime/JSValue.h	2011-09-11 05:16:09 UTC (rev 94918)
+++ trunk/Source/_javascript_Core/runtime/JSValue.h	2011-09-11 05:24:02 UTC (rev 94919)
@@ -458,8 +458,6 @@
     inline bool operator!=(const JSValue a, const JSCell* b) { return a != JSValue(b); }
     inline bool operator!=(const JSCell* a, const JSValue b) { return JSValue(a) != b; }
 
-    bool isZombie(const JSCell*);
-
 } // namespace JSC
 
 #endif // JSValue_h
_______________________________________________
webkit-changes mailing list
[email protected]
http://lists.webkit.org/mailman/listinfo.cgi/webkit-changes

Reply via email to