Title: [146688] trunk/Source/_javascript_Core
- Revision
- 146688
- Author
- [email protected]
- Date
- 2013-03-22 17:21:22 -0700 (Fri, 22 Mar 2013)
Log Message
-[TinyDOMNode dealloc] should call [super dealloc] when ARC is not enabled
https://bugs.webkit.org/show_bug.cgi?id=113054
Reviewed by Geoffrey Garen.
* API/tests/testapi.mm:
(-[TinyDOMNode dealloc]):
Modified Paths
Diff
Modified: trunk/Source/_javascript_Core/API/tests/testapi.mm (146687 => 146688)
--- trunk/Source/_javascript_Core/API/tests/testapi.mm 2013-03-23 00:14:36 UTC (rev 146687)
+++ trunk/Source/_javascript_Core/API/tests/testapi.mm 2013-03-23 00:21:22 UTC (rev 146688)
@@ -202,6 +202,10 @@
id nextChild;
while ((nextChild = [enumerator nextObject]))
[[TinyDOMNode sharedVirtualMachine] removeManagedReference:nextChild withOwner:self];
+
+#if !__has_feature(objc_arc)
+ [super dealloc];
+#endif
}
- (void)appendChild:(TinyDOMNode *)child
Modified: trunk/Source/_javascript_Core/ChangeLog (146687 => 146688)
--- trunk/Source/_javascript_Core/ChangeLog 2013-03-23 00:14:36 UTC (rev 146687)
+++ trunk/Source/_javascript_Core/ChangeLog 2013-03-23 00:21:22 UTC (rev 146688)
@@ -1,5 +1,15 @@
2013-03-22 Mark Hahnenberg <[email protected]>
+ -[TinyDOMNode dealloc] should call [super dealloc] when ARC is not enabled
+ https://bugs.webkit.org/show_bug.cgi?id=113054
+
+ Reviewed by Geoffrey Garen.
+
+ * API/tests/testapi.mm:
+ (-[TinyDOMNode dealloc]):
+
+2013-03-22 Mark Hahnenberg <[email protected]>
+
opaqueJSClassData should be cached on JSGlobalObject, not the JSGlobalData
https://bugs.webkit.org/show_bug.cgi?id=113086
_______________________________________________
webkit-changes mailing list
[email protected]
https://lists.webkit.org/mailman/listinfo/webkit-changes