Title: [169796] trunk/Source/WebCore
Revision
169796
Author
wei...@apple.com
Date
2014-06-10 22:44:00 -0700 (Tue, 10 Jun 2014)

Log Message

Actually only generate tables for History and Location.

* bindings/scripts/CodeGeneratorJS.pm:
(GenerateImplementation):

Modified Paths

Diff

Modified: trunk/Source/WebCore/ChangeLog (169795 => 169796)


--- trunk/Source/WebCore/ChangeLog	2014-06-11 04:52:59 UTC (rev 169795)
+++ trunk/Source/WebCore/ChangeLog	2014-06-11 05:44:00 UTC (rev 169796)
@@ -1,5 +1,12 @@
 2014-06-10  Sam Weinig  <s...@webkit.org>
 
+        Actually only generate tables for History and Location.
+
+        * bindings/scripts/CodeGeneratorJS.pm:
+        (GenerateImplementation):
+
+2014-06-10  Sam Weinig  <s...@webkit.org>
+
         Attempt to fix the tests.
 
         * bindings/scripts/CodeGeneratorJS.pm:

Modified: trunk/Source/WebCore/bindings/scripts/CodeGeneratorJS.pm (169795 => 169796)


--- trunk/Source/WebCore/bindings/scripts/CodeGeneratorJS.pm	2014-06-11 04:52:59 UTC (rev 169795)
+++ trunk/Source/WebCore/bindings/scripts/CodeGeneratorJS.pm	2014-06-11 05:44:00 UTC (rev 169796)
@@ -1933,7 +1933,7 @@
         }
     }
 
-    my $justGenerateValueArray = !IsDOMGlobalObject($interface) && $interface->name != "Location" && $interface->name != "History";
+    my $justGenerateValueArray = !(IsDOMGlobalObject($interface) || $interface->name eq "Location" || $interface->name eq "History");
 
     $object->GenerateHashTable($hashName, $hashSize,
                                \@hashKeys, \@hashSpecials,
_______________________________________________
webkit-changes mailing list
webkit-changes@lists.webkit.org
https://lists.webkit.org/mailman/listinfo/webkit-changes

Reply via email to