Title: [96835] trunk/Source/WebCore
Revision
96835
Author
[email protected]
Date
2011-10-06 11:10:08 -0700 (Thu, 06 Oct 2011)

Log Message

Fix CodeGeneratorV8 for EnabledAtRuntime when class has no parent class.
https://bugs.webkit.org/show_bug.cgi?id=69480

Reviewed by Adam Barth.

No new tests. No new functionality, yet.

* bindings/scripts/CodeGeneratorV8.pm:

Modified Paths

Diff

Modified: trunk/Source/WebCore/ChangeLog (96834 => 96835)


--- trunk/Source/WebCore/ChangeLog	2011-10-06 18:04:27 UTC (rev 96834)
+++ trunk/Source/WebCore/ChangeLog	2011-10-06 18:10:08 UTC (rev 96835)
@@ -1,3 +1,14 @@
+2011-10-06  Anna Cavender  <[email protected]>
+
+        Fix CodeGeneratorV8 for EnabledAtRuntime when class has no parent class.
+        https://bugs.webkit.org/show_bug.cgi?id=69480
+
+        Reviewed by Adam Barth.
+
+        No new tests. No new functionality, yet.
+
+        * bindings/scripts/CodeGeneratorV8.pm:
+
 2011-10-06  Dan Bernstein  <[email protected]>
 
         <rdar://problem/10232866> Assertion failure beneath blockSelectionGaps() when a selected node is removed

Modified: trunk/Source/WebCore/bindings/scripts/CodeGeneratorV8.pm (96834 => 96835)


--- trunk/Source/WebCore/bindings/scripts/CodeGeneratorV8.pm	2011-10-06 18:04:27 UTC (rev 96834)
+++ trunk/Source/WebCore/bindings/scripts/CodeGeneratorV8.pm	2011-10-06 18:10:08 UTC (rev 96835)
@@ -2186,7 +2186,7 @@
         my $enable_function = GetRuntimeEnableFunctionName($dataNode);
         push(@implContent, <<END);
     if (!${enable_function}())
-        defaultSignature = configureTemplate(desc, \"${parentClass}\", $parentClassTemplate, ${parentClass}::internalFieldCount, 0, 0, 0, 0);
+        defaultSignature = configureTemplate(desc, \"\", $parentClassTemplate, V8${interfaceName}::internalFieldCount, 0, 0, 0, 0);
     else
 END
     }
_______________________________________________
webkit-changes mailing list
[email protected]
http://lists.webkit.org/mailman/listinfo.cgi/webkit-changes

Reply via email to