Title: [172687] trunk/Source/_javascript_Core
Revision
172687
Author
b...@cs.washington.edu
Date
2014-08-15 21:38:00 -0700 (Fri, 15 Aug 2014)

Log Message

Web Inspector: rewrite CodeGeneratorInspector to be modular and testable
https://bugs.webkit.org/show_bug.cgi?id=131596

Unreviewed gardening to rebaseline inspector generator tests after addressing review comments.

* inspector/scripts/tests/expected/commands-with-async-attribute.json-result:
* inspector/scripts/tests/expected/commands-with-optional-call-return-parameters.json-result:
* inspector/scripts/tests/expected/domains-with-varying-command-sizes.json-result:
* inspector/scripts/tests/expected/events-with-optional-parameters.json-result:
* inspector/scripts/tests/expected/same-type-id-different-domain.json-result:
* inspector/scripts/tests/expected/shadowed-optional-type-setters.json-result:
* inspector/scripts/tests/expected/type-declaration-aliased-primitive-type.json-result:
* inspector/scripts/tests/expected/type-declaration-array-type.json-result:
* inspector/scripts/tests/expected/type-declaration-enum-type.json-result:
* inspector/scripts/tests/expected/type-declaration-object-type.json-result:
* inspector/scripts/tests/expected/type-requiring-runtime-casts.json-result:

Modified Paths

Diff

Modified: trunk/Source/_javascript_Core/ChangeLog (172686 => 172687)


--- trunk/Source/_javascript_Core/ChangeLog	2014-08-16 04:36:42 UTC (rev 172686)
+++ trunk/Source/_javascript_Core/ChangeLog	2014-08-16 04:38:00 UTC (rev 172687)
@@ -1,5 +1,24 @@
 2014-08-15  Brian J. Burg  <b...@cs.washington.edu>
 
+        Web Inspector: rewrite CodeGeneratorInspector to be modular and testable
+        https://bugs.webkit.org/show_bug.cgi?id=131596
+
+        Unreviewed gardening to rebaseline inspector generator tests after addressing review comments.
+
+        * inspector/scripts/tests/expected/commands-with-async-attribute.json-result:
+        * inspector/scripts/tests/expected/commands-with-optional-call-return-parameters.json-result:
+        * inspector/scripts/tests/expected/domains-with-varying-command-sizes.json-result:
+        * inspector/scripts/tests/expected/events-with-optional-parameters.json-result:
+        * inspector/scripts/tests/expected/same-type-id-different-domain.json-result:
+        * inspector/scripts/tests/expected/shadowed-optional-type-setters.json-result:
+        * inspector/scripts/tests/expected/type-declaration-aliased-primitive-type.json-result:
+        * inspector/scripts/tests/expected/type-declaration-array-type.json-result:
+        * inspector/scripts/tests/expected/type-declaration-enum-type.json-result:
+        * inspector/scripts/tests/expected/type-declaration-object-type.json-result:
+        * inspector/scripts/tests/expected/type-requiring-runtime-casts.json-result:
+
+2014-08-15  Brian J. Burg  <b...@cs.washington.edu>
+
         Unreviewed build fix for some GTK bots after r172655.
 
         Some bots use Python 2.6, which lacks the 'flags' named parameter for re.sub.

Modified: trunk/Source/_javascript_Core/inspector/scripts/tests/expected/commands-with-async-attribute.json-result (172686 => 172687)


--- trunk/Source/_javascript_Core/inspector/scripts/tests/expected/commands-with-async-attribute.json-result	2014-08-16 04:36:42 UTC (rev 172686)
+++ trunk/Source/_javascript_Core/inspector/scripts/tests/expected/commands-with-async-attribute.json-result	2014-08-16 04:38:00 UTC (rev 172687)
@@ -27,7 +27,7 @@
  */
 
 // DO NOT EDIT THIS FILE. It is automatically generated from commands-with-async-attribute.json
-// by the script: Source/_javascript_Core/inspector/scripts/codegen/generate-inspector-protocol-bindings.py
+// by the script: Source/_javascript_Core/inspector/scripts/generate-inspector-protocol-bindings.py
 
 // Database.
 InspectorBackend.registerDatabaseDispatcher = InspectorBackend.registerDomainDispatcher.bind(InspectorBackend, "Database");
@@ -67,7 +67,7 @@
  */
 
 // DO NOT EDIT THIS FILE. It is automatically generated from commands-with-async-attribute.json
-// by the script: Source/_javascript_Core/inspector/scripts/codegen/generate-inspector-protocol-bindings.py
+// by the script: Source/_javascript_Core/inspector/scripts/generate-inspector-protocol-bindings.py
 
 #ifndef InspectorTestBackendDispatchers_h
 #define InspectorTestBackendDispatchers_h
@@ -170,7 +170,7 @@
  */
 
 // DO NOT EDIT THIS FILE. It is automatically generated from commands-with-async-attribute.json
-// by the script: Source/_javascript_Core/inspector/scripts/codegen/generate-inspector-protocol-bindings.py
+// by the script: Source/_javascript_Core/inspector/scripts/generate-inspector-protocol-bindings.py
 
 #include "config.h"
 #include "InspectorTestBackendDispatchers.h"
@@ -438,7 +438,7 @@
  */
 
 // DO NOT EDIT THIS FILE. It is automatically generated from commands-with-async-attribute.json
-// by the script: Source/_javascript_Core/inspector/scripts/codegen/generate-inspector-protocol-bindings.py
+// by the script: Source/_javascript_Core/inspector/scripts/generate-inspector-protocol-bindings.py
 
 #ifndef InspectorTestFrontendDispatchers_h
 #define InspectorTestFrontendDispatchers_h
@@ -491,7 +491,7 @@
  */
 
 // DO NOT EDIT THIS FILE. It is automatically generated from commands-with-async-attribute.json
-// by the script: Source/_javascript_Core/inspector/scripts/codegen/generate-inspector-protocol-bindings.py
+// by the script: Source/_javascript_Core/inspector/scripts/generate-inspector-protocol-bindings.py
 
 #include "config.h"
 #include "InspectorTestFrontendDispatchers.h"
@@ -537,7 +537,7 @@
  */
 
 // DO NOT EDIT THIS FILE. It is automatically generated from commands-with-async-attribute.json
-// by the script: Source/_javascript_Core/inspector/scripts/codegen/generate-inspector-protocol-bindings.py
+// by the script: Source/_javascript_Core/inspector/scripts/generate-inspector-protocol-bindings.py
 
 #ifndef InspectorTestTypeBuilders_h
 #define InspectorTestTypeBuilders_h
@@ -700,7 +700,7 @@
  */
 
 // DO NOT EDIT THIS FILE. It is automatically generated from commands-with-async-attribute.json
-// by the script: Source/_javascript_Core/inspector/scripts/codegen/generate-inspector-protocol-bindings.py
+// by the script: Source/_javascript_Core/inspector/scripts/generate-inspector-protocol-bindings.py
 
 #include "config.h"
 #include "InspectorTestTypeBuilders.h"

Modified: trunk/Source/_javascript_Core/inspector/scripts/tests/expected/commands-with-optional-call-return-parameters.json-result (172686 => 172687)


--- trunk/Source/_javascript_Core/inspector/scripts/tests/expected/commands-with-optional-call-return-parameters.json-result	2014-08-16 04:36:42 UTC (rev 172686)
+++ trunk/Source/_javascript_Core/inspector/scripts/tests/expected/commands-with-optional-call-return-parameters.json-result	2014-08-16 04:38:00 UTC (rev 172687)
@@ -27,7 +27,7 @@
  */
 
 // DO NOT EDIT THIS FILE. It is automatically generated from commands-with-optional-call-return-parameters.json
-// by the script: Source/_javascript_Core/inspector/scripts/codegen/generate-inspector-protocol-bindings.py
+// by the script: Source/_javascript_Core/inspector/scripts/generate-inspector-protocol-bindings.py
 
 // Database.
 InspectorBackend.registerEnum("Database.PrimaryColors", {Red: "red", Green: "green", Blue: "blue"});
@@ -64,7 +64,7 @@
  */
 
 // DO NOT EDIT THIS FILE. It is automatically generated from commands-with-optional-call-return-parameters.json
-// by the script: Source/_javascript_Core/inspector/scripts/codegen/generate-inspector-protocol-bindings.py
+// by the script: Source/_javascript_Core/inspector/scripts/generate-inspector-protocol-bindings.py
 
 #ifndef InspectorTestBackendDispatchers_h
 #define InspectorTestBackendDispatchers_h
@@ -153,7 +153,7 @@
  */
 
 // DO NOT EDIT THIS FILE. It is automatically generated from commands-with-optional-call-return-parameters.json
-// by the script: Source/_javascript_Core/inspector/scripts/codegen/generate-inspector-protocol-bindings.py
+// by the script: Source/_javascript_Core/inspector/scripts/generate-inspector-protocol-bindings.py
 
 #include "config.h"
 #include "InspectorTestBackendDispatchers.h"
@@ -345,7 +345,7 @@
  */
 
 // DO NOT EDIT THIS FILE. It is automatically generated from commands-with-optional-call-return-parameters.json
-// by the script: Source/_javascript_Core/inspector/scripts/codegen/generate-inspector-protocol-bindings.py
+// by the script: Source/_javascript_Core/inspector/scripts/generate-inspector-protocol-bindings.py
 
 #ifndef InspectorTestFrontendDispatchers_h
 #define InspectorTestFrontendDispatchers_h
@@ -398,7 +398,7 @@
  */
 
 // DO NOT EDIT THIS FILE. It is automatically generated from commands-with-optional-call-return-parameters.json
-// by the script: Source/_javascript_Core/inspector/scripts/codegen/generate-inspector-protocol-bindings.py
+// by the script: Source/_javascript_Core/inspector/scripts/generate-inspector-protocol-bindings.py
 
 #include "config.h"
 #include "InspectorTestFrontendDispatchers.h"
@@ -444,7 +444,7 @@
  */
 
 // DO NOT EDIT THIS FILE. It is automatically generated from commands-with-optional-call-return-parameters.json
-// by the script: Source/_javascript_Core/inspector/scripts/codegen/generate-inspector-protocol-bindings.py
+// by the script: Source/_javascript_Core/inspector/scripts/generate-inspector-protocol-bindings.py
 
 #ifndef InspectorTestTypeBuilders_h
 #define InspectorTestTypeBuilders_h
@@ -607,7 +607,7 @@
  */
 
 // DO NOT EDIT THIS FILE. It is automatically generated from commands-with-optional-call-return-parameters.json
-// by the script: Source/_javascript_Core/inspector/scripts/codegen/generate-inspector-protocol-bindings.py
+// by the script: Source/_javascript_Core/inspector/scripts/generate-inspector-protocol-bindings.py
 
 #include "config.h"
 #include "InspectorTestTypeBuilders.h"

Modified: trunk/Source/_javascript_Core/inspector/scripts/tests/expected/domains-with-varying-command-sizes.json-result (172686 => 172687)


--- trunk/Source/_javascript_Core/inspector/scripts/tests/expected/domains-with-varying-command-sizes.json-result	2014-08-16 04:36:42 UTC (rev 172686)
+++ trunk/Source/_javascript_Core/inspector/scripts/tests/expected/domains-with-varying-command-sizes.json-result	2014-08-16 04:38:00 UTC (rev 172687)
@@ -27,7 +27,7 @@
  */
 
 // DO NOT EDIT THIS FILE. It is automatically generated from domains-with-varying-command-sizes.json
-// by the script: Source/_javascript_Core/inspector/scripts/codegen/generate-inspector-protocol-bindings.py
+// by the script: Source/_javascript_Core/inspector/scripts/generate-inspector-protocol-bindings.py
 
 // Network1.
 InspectorBackend.registerCommand("Network1.loadResource1", [], []);
@@ -71,7 +71,7 @@
  */
 
 // DO NOT EDIT THIS FILE. It is automatically generated from domains-with-varying-command-sizes.json
-// by the script: Source/_javascript_Core/inspector/scripts/codegen/generate-inspector-protocol-bindings.py
+// by the script: Source/_javascript_Core/inspector/scripts/generate-inspector-protocol-bindings.py
 
 #ifndef InspectorTestBackendDispatchers_h
 #define InspectorTestBackendDispatchers_h
@@ -171,7 +171,7 @@
  */
 
 // DO NOT EDIT THIS FILE. It is automatically generated from domains-with-varying-command-sizes.json
-// by the script: Source/_javascript_Core/inspector/scripts/codegen/generate-inspector-protocol-bindings.py
+// by the script: Source/_javascript_Core/inspector/scripts/generate-inspector-protocol-bindings.py
 
 #include "config.h"
 #include "InspectorTestBackendDispatchers.h"
@@ -362,7 +362,7 @@
  */
 
 // DO NOT EDIT THIS FILE. It is automatically generated from domains-with-varying-command-sizes.json
-// by the script: Source/_javascript_Core/inspector/scripts/codegen/generate-inspector-protocol-bindings.py
+// by the script: Source/_javascript_Core/inspector/scripts/generate-inspector-protocol-bindings.py
 
 #ifndef InspectorTestFrontendDispatchers_h
 #define InspectorTestFrontendDispatchers_h
@@ -415,7 +415,7 @@
  */
 
 // DO NOT EDIT THIS FILE. It is automatically generated from domains-with-varying-command-sizes.json
-// by the script: Source/_javascript_Core/inspector/scripts/codegen/generate-inspector-protocol-bindings.py
+// by the script: Source/_javascript_Core/inspector/scripts/generate-inspector-protocol-bindings.py
 
 #include "config.h"
 #include "InspectorTestFrontendDispatchers.h"
@@ -461,7 +461,7 @@
  */
 
 // DO NOT EDIT THIS FILE. It is automatically generated from domains-with-varying-command-sizes.json
-// by the script: Source/_javascript_Core/inspector/scripts/codegen/generate-inspector-protocol-bindings.py
+// by the script: Source/_javascript_Core/inspector/scripts/generate-inspector-protocol-bindings.py
 
 #ifndef InspectorTestTypeBuilders_h
 #define InspectorTestTypeBuilders_h
@@ -535,7 +535,7 @@
  */
 
 // DO NOT EDIT THIS FILE. It is automatically generated from domains-with-varying-command-sizes.json
-// by the script: Source/_javascript_Core/inspector/scripts/codegen/generate-inspector-protocol-bindings.py
+// by the script: Source/_javascript_Core/inspector/scripts/generate-inspector-protocol-bindings.py
 
 #include "config.h"
 #include "InspectorTestTypeBuilders.h"

Modified: trunk/Source/_javascript_Core/inspector/scripts/tests/expected/events-with-optional-parameters.json-result (172686 => 172687)


--- trunk/Source/_javascript_Core/inspector/scripts/tests/expected/events-with-optional-parameters.json-result	2014-08-16 04:36:42 UTC (rev 172686)
+++ trunk/Source/_javascript_Core/inspector/scripts/tests/expected/events-with-optional-parameters.json-result	2014-08-16 04:38:00 UTC (rev 172687)
@@ -27,7 +27,7 @@
  */
 
 // DO NOT EDIT THIS FILE. It is automatically generated from events-with-optional-parameters.json
-// by the script: Source/_javascript_Core/inspector/scripts/codegen/generate-inspector-protocol-bindings.py
+// by the script: Source/_javascript_Core/inspector/scripts/generate-inspector-protocol-bindings.py
 
 // Database.
 InspectorBackend.registerDatabaseDispatcher = InspectorBackend.registerDomainDispatcher.bind(InspectorBackend, "Database");
@@ -64,7 +64,7 @@
  */
 
 // DO NOT EDIT THIS FILE. It is automatically generated from events-with-optional-parameters.json
-// by the script: Source/_javascript_Core/inspector/scripts/codegen/generate-inspector-protocol-bindings.py
+// by the script: Source/_javascript_Core/inspector/scripts/generate-inspector-protocol-bindings.py
 
 #ifndef InspectorTestBackendDispatchers_h
 #define InspectorTestBackendDispatchers_h
@@ -116,7 +116,7 @@
  */
 
 // DO NOT EDIT THIS FILE. It is automatically generated from events-with-optional-parameters.json
-// by the script: Source/_javascript_Core/inspector/scripts/codegen/generate-inspector-protocol-bindings.py
+// by the script: Source/_javascript_Core/inspector/scripts/generate-inspector-protocol-bindings.py
 
 #include "config.h"
 #include "InspectorTestBackendDispatchers.h"
@@ -166,7 +166,7 @@
  */
 
 // DO NOT EDIT THIS FILE. It is automatically generated from events-with-optional-parameters.json
-// by the script: Source/_javascript_Core/inspector/scripts/codegen/generate-inspector-protocol-bindings.py
+// by the script: Source/_javascript_Core/inspector/scripts/generate-inspector-protocol-bindings.py
 
 #ifndef InspectorTestFrontendDispatchers_h
 #define InspectorTestFrontendDispatchers_h
@@ -230,7 +230,7 @@
  */
 
 // DO NOT EDIT THIS FILE. It is automatically generated from events-with-optional-parameters.json
-// by the script: Source/_javascript_Core/inspector/scripts/codegen/generate-inspector-protocol-bindings.py
+// by the script: Source/_javascript_Core/inspector/scripts/generate-inspector-protocol-bindings.py
 
 #include "config.h"
 #include "InspectorTestFrontendDispatchers.h"
@@ -322,7 +322,7 @@
  */
 
 // DO NOT EDIT THIS FILE. It is automatically generated from events-with-optional-parameters.json
-// by the script: Source/_javascript_Core/inspector/scripts/codegen/generate-inspector-protocol-bindings.py
+// by the script: Source/_javascript_Core/inspector/scripts/generate-inspector-protocol-bindings.py
 
 #ifndef InspectorTestTypeBuilders_h
 #define InspectorTestTypeBuilders_h
@@ -480,7 +480,7 @@
  */
 
 // DO NOT EDIT THIS FILE. It is automatically generated from events-with-optional-parameters.json
-// by the script: Source/_javascript_Core/inspector/scripts/codegen/generate-inspector-protocol-bindings.py
+// by the script: Source/_javascript_Core/inspector/scripts/generate-inspector-protocol-bindings.py
 
 #include "config.h"
 #include "InspectorTestTypeBuilders.h"

Modified: trunk/Source/_javascript_Core/inspector/scripts/tests/expected/same-type-id-different-domain.json-result (172686 => 172687)


--- trunk/Source/_javascript_Core/inspector/scripts/tests/expected/same-type-id-different-domain.json-result	2014-08-16 04:36:42 UTC (rev 172686)
+++ trunk/Source/_javascript_Core/inspector/scripts/tests/expected/same-type-id-different-domain.json-result	2014-08-16 04:38:00 UTC (rev 172687)
@@ -27,7 +27,7 @@
  */
 
 // DO NOT EDIT THIS FILE. It is automatically generated from same-type-id-different-domain.json
-// by the script: Source/_javascript_Core/inspector/scripts/codegen/generate-inspector-protocol-bindings.py
+// by the script: Source/_javascript_Core/inspector/scripts/generate-inspector-protocol-bindings.py
 ### End File: InspectorTestBackendCommands.js
 
 ### Begin File: InspectorTestBackendDispatchers.h
@@ -59,7 +59,7 @@
  */
 
 // DO NOT EDIT THIS FILE. It is automatically generated from same-type-id-different-domain.json
-// by the script: Source/_javascript_Core/inspector/scripts/codegen/generate-inspector-protocol-bindings.py
+// by the script: Source/_javascript_Core/inspector/scripts/generate-inspector-protocol-bindings.py
 
 #ifndef InspectorTestBackendDispatchers_h
 #define InspectorTestBackendDispatchers_h
@@ -111,7 +111,7 @@
  */
 
 // DO NOT EDIT THIS FILE. It is automatically generated from same-type-id-different-domain.json
-// by the script: Source/_javascript_Core/inspector/scripts/codegen/generate-inspector-protocol-bindings.py
+// by the script: Source/_javascript_Core/inspector/scripts/generate-inspector-protocol-bindings.py
 
 #include "config.h"
 #include "InspectorTestBackendDispatchers.h"
@@ -161,7 +161,7 @@
  */
 
 // DO NOT EDIT THIS FILE. It is automatically generated from same-type-id-different-domain.json
-// by the script: Source/_javascript_Core/inspector/scripts/codegen/generate-inspector-protocol-bindings.py
+// by the script: Source/_javascript_Core/inspector/scripts/generate-inspector-protocol-bindings.py
 
 #ifndef InspectorTestFrontendDispatchers_h
 #define InspectorTestFrontendDispatchers_h
@@ -214,7 +214,7 @@
  */
 
 // DO NOT EDIT THIS FILE. It is automatically generated from same-type-id-different-domain.json
-// by the script: Source/_javascript_Core/inspector/scripts/codegen/generate-inspector-protocol-bindings.py
+// by the script: Source/_javascript_Core/inspector/scripts/generate-inspector-protocol-bindings.py
 
 #include "config.h"
 #include "InspectorTestFrontendDispatchers.h"
@@ -260,7 +260,7 @@
  */
 
 // DO NOT EDIT THIS FILE. It is automatically generated from same-type-id-different-domain.json
-// by the script: Source/_javascript_Core/inspector/scripts/codegen/generate-inspector-protocol-bindings.py
+// by the script: Source/_javascript_Core/inspector/scripts/generate-inspector-protocol-bindings.py
 
 #ifndef InspectorTestTypeBuilders_h
 #define InspectorTestTypeBuilders_h
@@ -339,7 +339,7 @@
  */
 
 // DO NOT EDIT THIS FILE. It is automatically generated from same-type-id-different-domain.json
-// by the script: Source/_javascript_Core/inspector/scripts/codegen/generate-inspector-protocol-bindings.py
+// by the script: Source/_javascript_Core/inspector/scripts/generate-inspector-protocol-bindings.py
 
 #include "config.h"
 #include "InspectorTestTypeBuilders.h"

Modified: trunk/Source/_javascript_Core/inspector/scripts/tests/expected/shadowed-optional-type-setters.json-result (172686 => 172687)


--- trunk/Source/_javascript_Core/inspector/scripts/tests/expected/shadowed-optional-type-setters.json-result	2014-08-16 04:36:42 UTC (rev 172686)
+++ trunk/Source/_javascript_Core/inspector/scripts/tests/expected/shadowed-optional-type-setters.json-result	2014-08-16 04:38:00 UTC (rev 172687)
@@ -27,7 +27,7 @@
  */
 
 // DO NOT EDIT THIS FILE. It is automatically generated from shadowed-optional-type-setters.json
-// by the script: Source/_javascript_Core/inspector/scripts/codegen/generate-inspector-protocol-bindings.py
+// by the script: Source/_javascript_Core/inspector/scripts/generate-inspector-protocol-bindings.py
 ### End File: InspectorTestBackendCommands.js
 
 ### Begin File: InspectorTestBackendDispatchers.h
@@ -59,7 +59,7 @@
  */
 
 // DO NOT EDIT THIS FILE. It is automatically generated from shadowed-optional-type-setters.json
-// by the script: Source/_javascript_Core/inspector/scripts/codegen/generate-inspector-protocol-bindings.py
+// by the script: Source/_javascript_Core/inspector/scripts/generate-inspector-protocol-bindings.py
 
 #ifndef InspectorTestBackendDispatchers_h
 #define InspectorTestBackendDispatchers_h
@@ -111,7 +111,7 @@
  */
 
 // DO NOT EDIT THIS FILE. It is automatically generated from shadowed-optional-type-setters.json
-// by the script: Source/_javascript_Core/inspector/scripts/codegen/generate-inspector-protocol-bindings.py
+// by the script: Source/_javascript_Core/inspector/scripts/generate-inspector-protocol-bindings.py
 
 #include "config.h"
 #include "InspectorTestBackendDispatchers.h"
@@ -161,7 +161,7 @@
  */
 
 // DO NOT EDIT THIS FILE. It is automatically generated from shadowed-optional-type-setters.json
-// by the script: Source/_javascript_Core/inspector/scripts/codegen/generate-inspector-protocol-bindings.py
+// by the script: Source/_javascript_Core/inspector/scripts/generate-inspector-protocol-bindings.py
 
 #ifndef InspectorTestFrontendDispatchers_h
 #define InspectorTestFrontendDispatchers_h
@@ -214,7 +214,7 @@
  */
 
 // DO NOT EDIT THIS FILE. It is automatically generated from shadowed-optional-type-setters.json
-// by the script: Source/_javascript_Core/inspector/scripts/codegen/generate-inspector-protocol-bindings.py
+// by the script: Source/_javascript_Core/inspector/scripts/generate-inspector-protocol-bindings.py
 
 #include "config.h"
 #include "InspectorTestFrontendDispatchers.h"
@@ -260,7 +260,7 @@
  */
 
 // DO NOT EDIT THIS FILE. It is automatically generated from shadowed-optional-type-setters.json
-// by the script: Source/_javascript_Core/inspector/scripts/codegen/generate-inspector-protocol-bindings.py
+// by the script: Source/_javascript_Core/inspector/scripts/generate-inspector-protocol-bindings.py
 
 #ifndef InspectorTestTypeBuilders_h
 #define InspectorTestTypeBuilders_h
@@ -412,7 +412,7 @@
  */
 
 // DO NOT EDIT THIS FILE. It is automatically generated from shadowed-optional-type-setters.json
-// by the script: Source/_javascript_Core/inspector/scripts/codegen/generate-inspector-protocol-bindings.py
+// by the script: Source/_javascript_Core/inspector/scripts/generate-inspector-protocol-bindings.py
 
 #include "config.h"
 #include "InspectorTestTypeBuilders.h"

Modified: trunk/Source/_javascript_Core/inspector/scripts/tests/expected/type-declaration-aliased-primitive-type.json-result (172686 => 172687)


--- trunk/Source/_javascript_Core/inspector/scripts/tests/expected/type-declaration-aliased-primitive-type.json-result	2014-08-16 04:36:42 UTC (rev 172686)
+++ trunk/Source/_javascript_Core/inspector/scripts/tests/expected/type-declaration-aliased-primitive-type.json-result	2014-08-16 04:38:00 UTC (rev 172687)
@@ -27,7 +27,7 @@
  */
 
 // DO NOT EDIT THIS FILE. It is automatically generated from type-declaration-aliased-primitive-type.json
-// by the script: Source/_javascript_Core/inspector/scripts/codegen/generate-inspector-protocol-bindings.py
+// by the script: Source/_javascript_Core/inspector/scripts/generate-inspector-protocol-bindings.py
 ### End File: InspectorTestBackendCommands.js
 
 ### Begin File: InspectorTestBackendDispatchers.h
@@ -59,7 +59,7 @@
  */
 
 // DO NOT EDIT THIS FILE. It is automatically generated from type-declaration-aliased-primitive-type.json
-// by the script: Source/_javascript_Core/inspector/scripts/codegen/generate-inspector-protocol-bindings.py
+// by the script: Source/_javascript_Core/inspector/scripts/generate-inspector-protocol-bindings.py
 
 #ifndef InspectorTestBackendDispatchers_h
 #define InspectorTestBackendDispatchers_h
@@ -111,7 +111,7 @@
  */
 
 // DO NOT EDIT THIS FILE. It is automatically generated from type-declaration-aliased-primitive-type.json
-// by the script: Source/_javascript_Core/inspector/scripts/codegen/generate-inspector-protocol-bindings.py
+// by the script: Source/_javascript_Core/inspector/scripts/generate-inspector-protocol-bindings.py
 
 #include "config.h"
 #include "InspectorTestBackendDispatchers.h"
@@ -161,7 +161,7 @@
  */
 
 // DO NOT EDIT THIS FILE. It is automatically generated from type-declaration-aliased-primitive-type.json
-// by the script: Source/_javascript_Core/inspector/scripts/codegen/generate-inspector-protocol-bindings.py
+// by the script: Source/_javascript_Core/inspector/scripts/generate-inspector-protocol-bindings.py
 
 #ifndef InspectorTestFrontendDispatchers_h
 #define InspectorTestFrontendDispatchers_h
@@ -214,7 +214,7 @@
  */
 
 // DO NOT EDIT THIS FILE. It is automatically generated from type-declaration-aliased-primitive-type.json
-// by the script: Source/_javascript_Core/inspector/scripts/codegen/generate-inspector-protocol-bindings.py
+// by the script: Source/_javascript_Core/inspector/scripts/generate-inspector-protocol-bindings.py
 
 #include "config.h"
 #include "InspectorTestFrontendDispatchers.h"
@@ -260,7 +260,7 @@
  */
 
 // DO NOT EDIT THIS FILE. It is automatically generated from type-declaration-aliased-primitive-type.json
-// by the script: Source/_javascript_Core/inspector/scripts/codegen/generate-inspector-protocol-bindings.py
+// by the script: Source/_javascript_Core/inspector/scripts/generate-inspector-protocol-bindings.py
 
 #ifndef InspectorTestTypeBuilders_h
 #define InspectorTestTypeBuilders_h
@@ -334,7 +334,7 @@
  */
 
 // DO NOT EDIT THIS FILE. It is automatically generated from type-declaration-aliased-primitive-type.json
-// by the script: Source/_javascript_Core/inspector/scripts/codegen/generate-inspector-protocol-bindings.py
+// by the script: Source/_javascript_Core/inspector/scripts/generate-inspector-protocol-bindings.py
 
 #include "config.h"
 #include "InspectorTestTypeBuilders.h"

Modified: trunk/Source/_javascript_Core/inspector/scripts/tests/expected/type-declaration-array-type.json-result (172686 => 172687)


--- trunk/Source/_javascript_Core/inspector/scripts/tests/expected/type-declaration-array-type.json-result	2014-08-16 04:36:42 UTC (rev 172686)
+++ trunk/Source/_javascript_Core/inspector/scripts/tests/expected/type-declaration-array-type.json-result	2014-08-16 04:38:00 UTC (rev 172687)
@@ -27,7 +27,7 @@
  */
 
 // DO NOT EDIT THIS FILE. It is automatically generated from type-declaration-array-type.json
-// by the script: Source/_javascript_Core/inspector/scripts/codegen/generate-inspector-protocol-bindings.py
+// by the script: Source/_javascript_Core/inspector/scripts/generate-inspector-protocol-bindings.py
 
 // Debugger.
 InspectorBackend.registerEnum("Debugger.Reason", {Died: "Died", Fainted: "Fainted", Hungry: "Hungry"});
@@ -62,7 +62,7 @@
  */
 
 // DO NOT EDIT THIS FILE. It is automatically generated from type-declaration-array-type.json
-// by the script: Source/_javascript_Core/inspector/scripts/codegen/generate-inspector-protocol-bindings.py
+// by the script: Source/_javascript_Core/inspector/scripts/generate-inspector-protocol-bindings.py
 
 #ifndef InspectorTestBackendDispatchers_h
 #define InspectorTestBackendDispatchers_h
@@ -114,7 +114,7 @@
  */
 
 // DO NOT EDIT THIS FILE. It is automatically generated from type-declaration-array-type.json
-// by the script: Source/_javascript_Core/inspector/scripts/codegen/generate-inspector-protocol-bindings.py
+// by the script: Source/_javascript_Core/inspector/scripts/generate-inspector-protocol-bindings.py
 
 #include "config.h"
 #include "InspectorTestBackendDispatchers.h"
@@ -164,7 +164,7 @@
  */
 
 // DO NOT EDIT THIS FILE. It is automatically generated from type-declaration-array-type.json
-// by the script: Source/_javascript_Core/inspector/scripts/codegen/generate-inspector-protocol-bindings.py
+// by the script: Source/_javascript_Core/inspector/scripts/generate-inspector-protocol-bindings.py
 
 #ifndef InspectorTestFrontendDispatchers_h
 #define InspectorTestFrontendDispatchers_h
@@ -217,7 +217,7 @@
  */
 
 // DO NOT EDIT THIS FILE. It is automatically generated from type-declaration-array-type.json
-// by the script: Source/_javascript_Core/inspector/scripts/codegen/generate-inspector-protocol-bindings.py
+// by the script: Source/_javascript_Core/inspector/scripts/generate-inspector-protocol-bindings.py
 
 #include "config.h"
 #include "InspectorTestFrontendDispatchers.h"
@@ -263,7 +263,7 @@
  */
 
 // DO NOT EDIT THIS FILE. It is automatically generated from type-declaration-array-type.json
-// by the script: Source/_javascript_Core/inspector/scripts/codegen/generate-inspector-protocol-bindings.py
+// by the script: Source/_javascript_Core/inspector/scripts/generate-inspector-protocol-bindings.py
 
 #ifndef InspectorTestTypeBuilders_h
 #define InspectorTestTypeBuilders_h
@@ -354,7 +354,7 @@
  */
 
 // DO NOT EDIT THIS FILE. It is automatically generated from type-declaration-array-type.json
-// by the script: Source/_javascript_Core/inspector/scripts/codegen/generate-inspector-protocol-bindings.py
+// by the script: Source/_javascript_Core/inspector/scripts/generate-inspector-protocol-bindings.py
 
 #include "config.h"
 #include "InspectorTestTypeBuilders.h"

Modified: trunk/Source/_javascript_Core/inspector/scripts/tests/expected/type-declaration-enum-type.json-result (172686 => 172687)


--- trunk/Source/_javascript_Core/inspector/scripts/tests/expected/type-declaration-enum-type.json-result	2014-08-16 04:36:42 UTC (rev 172686)
+++ trunk/Source/_javascript_Core/inspector/scripts/tests/expected/type-declaration-enum-type.json-result	2014-08-16 04:38:00 UTC (rev 172687)
@@ -27,7 +27,7 @@
  */
 
 // DO NOT EDIT THIS FILE. It is automatically generated from type-declaration-enum-type.json
-// by the script: Source/_javascript_Core/inspector/scripts/codegen/generate-inspector-protocol-bindings.py
+// by the script: Source/_javascript_Core/inspector/scripts/generate-inspector-protocol-bindings.py
 
 // Runtime.
 InspectorBackend.registerEnum("Runtime.FarmAnimals", {Pigs: "Pigs", Cows: "Cows", Cats: "Cats", Hens: "Hens"});
@@ -63,7 +63,7 @@
  */
 
 // DO NOT EDIT THIS FILE. It is automatically generated from type-declaration-enum-type.json
-// by the script: Source/_javascript_Core/inspector/scripts/codegen/generate-inspector-protocol-bindings.py
+// by the script: Source/_javascript_Core/inspector/scripts/generate-inspector-protocol-bindings.py
 
 #ifndef InspectorTestBackendDispatchers_h
 #define InspectorTestBackendDispatchers_h
@@ -115,7 +115,7 @@
  */
 
 // DO NOT EDIT THIS FILE. It is automatically generated from type-declaration-enum-type.json
-// by the script: Source/_javascript_Core/inspector/scripts/codegen/generate-inspector-protocol-bindings.py
+// by the script: Source/_javascript_Core/inspector/scripts/generate-inspector-protocol-bindings.py
 
 #include "config.h"
 #include "InspectorTestBackendDispatchers.h"
@@ -165,7 +165,7 @@
  */
 
 // DO NOT EDIT THIS FILE. It is automatically generated from type-declaration-enum-type.json
-// by the script: Source/_javascript_Core/inspector/scripts/codegen/generate-inspector-protocol-bindings.py
+// by the script: Source/_javascript_Core/inspector/scripts/generate-inspector-protocol-bindings.py
 
 #ifndef InspectorTestFrontendDispatchers_h
 #define InspectorTestFrontendDispatchers_h
@@ -218,7 +218,7 @@
  */
 
 // DO NOT EDIT THIS FILE. It is automatically generated from type-declaration-enum-type.json
-// by the script: Source/_javascript_Core/inspector/scripts/codegen/generate-inspector-protocol-bindings.py
+// by the script: Source/_javascript_Core/inspector/scripts/generate-inspector-protocol-bindings.py
 
 #include "config.h"
 #include "InspectorTestFrontendDispatchers.h"
@@ -264,7 +264,7 @@
  */
 
 // DO NOT EDIT THIS FILE. It is automatically generated from type-declaration-enum-type.json
-// by the script: Source/_javascript_Core/inspector/scripts/codegen/generate-inspector-protocol-bindings.py
+// by the script: Source/_javascript_Core/inspector/scripts/generate-inspector-protocol-bindings.py
 
 #ifndef InspectorTestTypeBuilders_h
 #define InspectorTestTypeBuilders_h
@@ -356,7 +356,7 @@
  */
 
 // DO NOT EDIT THIS FILE. It is automatically generated from type-declaration-enum-type.json
-// by the script: Source/_javascript_Core/inspector/scripts/codegen/generate-inspector-protocol-bindings.py
+// by the script: Source/_javascript_Core/inspector/scripts/generate-inspector-protocol-bindings.py
 
 #include "config.h"
 #include "InspectorTestTypeBuilders.h"

Modified: trunk/Source/_javascript_Core/inspector/scripts/tests/expected/type-declaration-object-type.json-result (172686 => 172687)


--- trunk/Source/_javascript_Core/inspector/scripts/tests/expected/type-declaration-object-type.json-result	2014-08-16 04:36:42 UTC (rev 172686)
+++ trunk/Source/_javascript_Core/inspector/scripts/tests/expected/type-declaration-object-type.json-result	2014-08-16 04:38:00 UTC (rev 172687)
@@ -27,7 +27,7 @@
  */
 
 // DO NOT EDIT THIS FILE. It is automatically generated from type-declaration-object-type.json
-// by the script: Source/_javascript_Core/inspector/scripts/codegen/generate-inspector-protocol-bindings.py
+// by the script: Source/_javascript_Core/inspector/scripts/generate-inspector-protocol-bindings.py
 
 // Test.
 InspectorBackend.registerCommand("Test.attemptCurse", [{"name": "curse", "type": "object", "optional": false}], ["censoredCurse"]);
@@ -62,7 +62,7 @@
  */
 
 // DO NOT EDIT THIS FILE. It is automatically generated from type-declaration-object-type.json
-// by the script: Source/_javascript_Core/inspector/scripts/codegen/generate-inspector-protocol-bindings.py
+// by the script: Source/_javascript_Core/inspector/scripts/generate-inspector-protocol-bindings.py
 
 #ifndef InspectorTestBackendDispatchers_h
 #define InspectorTestBackendDispatchers_h
@@ -132,7 +132,7 @@
  */
 
 // DO NOT EDIT THIS FILE. It is automatically generated from type-declaration-object-type.json
-// by the script: Source/_javascript_Core/inspector/scripts/codegen/generate-inspector-protocol-bindings.py
+// by the script: Source/_javascript_Core/inspector/scripts/generate-inspector-protocol-bindings.py
 
 #include "config.h"
 #include "InspectorTestBackendDispatchers.h"
@@ -229,7 +229,7 @@
  */
 
 // DO NOT EDIT THIS FILE. It is automatically generated from type-declaration-object-type.json
-// by the script: Source/_javascript_Core/inspector/scripts/codegen/generate-inspector-protocol-bindings.py
+// by the script: Source/_javascript_Core/inspector/scripts/generate-inspector-protocol-bindings.py
 
 #ifndef InspectorTestFrontendDispatchers_h
 #define InspectorTestFrontendDispatchers_h
@@ -282,7 +282,7 @@
  */
 
 // DO NOT EDIT THIS FILE. It is automatically generated from type-declaration-object-type.json
-// by the script: Source/_javascript_Core/inspector/scripts/codegen/generate-inspector-protocol-bindings.py
+// by the script: Source/_javascript_Core/inspector/scripts/generate-inspector-protocol-bindings.py
 
 #include "config.h"
 #include "InspectorTestFrontendDispatchers.h"
@@ -328,7 +328,7 @@
  */
 
 // DO NOT EDIT THIS FILE. It is automatically generated from type-declaration-object-type.json
-// by the script: Source/_javascript_Core/inspector/scripts/codegen/generate-inspector-protocol-bindings.py
+// by the script: Source/_javascript_Core/inspector/scripts/generate-inspector-protocol-bindings.py
 
 #ifndef InspectorTestTypeBuilders_h
 #define InspectorTestTypeBuilders_h
@@ -869,7 +869,7 @@
  */
 
 // DO NOT EDIT THIS FILE. It is automatically generated from type-declaration-object-type.json
-// by the script: Source/_javascript_Core/inspector/scripts/codegen/generate-inspector-protocol-bindings.py
+// by the script: Source/_javascript_Core/inspector/scripts/generate-inspector-protocol-bindings.py
 
 #include "config.h"
 #include "InspectorTestTypeBuilders.h"

Modified: trunk/Source/_javascript_Core/inspector/scripts/tests/expected/type-requiring-runtime-casts.json-result (172686 => 172687)


--- trunk/Source/_javascript_Core/inspector/scripts/tests/expected/type-requiring-runtime-casts.json-result	2014-08-16 04:36:42 UTC (rev 172686)
+++ trunk/Source/_javascript_Core/inspector/scripts/tests/expected/type-requiring-runtime-casts.json-result	2014-08-16 04:38:00 UTC (rev 172687)
@@ -27,7 +27,7 @@
  */
 
 // DO NOT EDIT THIS FILE. It is automatically generated from type-requiring-runtime-casts.json
-// by the script: Source/_javascript_Core/inspector/scripts/codegen/generate-inspector-protocol-bindings.py
+// by the script: Source/_javascript_Core/inspector/scripts/generate-inspector-protocol-bindings.py
 
 // Test.
 InspectorBackend.registerEnum("Test.UncastedAnimals", {Pigs: "Pigs", Cows: "Cows", Cats: "Cats", Hens: "Hens"});
@@ -63,7 +63,7 @@
  */
 
 // DO NOT EDIT THIS FILE. It is automatically generated from type-requiring-runtime-casts.json
-// by the script: Source/_javascript_Core/inspector/scripts/codegen/generate-inspector-protocol-bindings.py
+// by the script: Source/_javascript_Core/inspector/scripts/generate-inspector-protocol-bindings.py
 
 #ifndef InspectorTestBackendDispatchers_h
 #define InspectorTestBackendDispatchers_h
@@ -115,7 +115,7 @@
  */
 
 // DO NOT EDIT THIS FILE. It is automatically generated from type-requiring-runtime-casts.json
-// by the script: Source/_javascript_Core/inspector/scripts/codegen/generate-inspector-protocol-bindings.py
+// by the script: Source/_javascript_Core/inspector/scripts/generate-inspector-protocol-bindings.py
 
 #include "config.h"
 #include "InspectorTestBackendDispatchers.h"
@@ -165,7 +165,7 @@
  */
 
 // DO NOT EDIT THIS FILE. It is automatically generated from type-requiring-runtime-casts.json
-// by the script: Source/_javascript_Core/inspector/scripts/codegen/generate-inspector-protocol-bindings.py
+// by the script: Source/_javascript_Core/inspector/scripts/generate-inspector-protocol-bindings.py
 
 #ifndef InspectorTestFrontendDispatchers_h
 #define InspectorTestFrontendDispatchers_h
@@ -218,7 +218,7 @@
  */
 
 // DO NOT EDIT THIS FILE. It is automatically generated from type-requiring-runtime-casts.json
-// by the script: Source/_javascript_Core/inspector/scripts/codegen/generate-inspector-protocol-bindings.py
+// by the script: Source/_javascript_Core/inspector/scripts/generate-inspector-protocol-bindings.py
 
 #include "config.h"
 #include "InspectorTestFrontendDispatchers.h"
@@ -264,7 +264,7 @@
  */
 
 // DO NOT EDIT THIS FILE. It is automatically generated from type-requiring-runtime-casts.json
-// by the script: Source/_javascript_Core/inspector/scripts/codegen/generate-inspector-protocol-bindings.py
+// by the script: Source/_javascript_Core/inspector/scripts/generate-inspector-protocol-bindings.py
 
 #ifndef InspectorTestTypeBuilders_h
 #define InspectorTestTypeBuilders_h
@@ -588,7 +588,7 @@
  */
 
 // DO NOT EDIT THIS FILE. It is automatically generated from type-requiring-runtime-casts.json
-// by the script: Source/_javascript_Core/inspector/scripts/codegen/generate-inspector-protocol-bindings.py
+// by the script: Source/_javascript_Core/inspector/scripts/generate-inspector-protocol-bindings.py
 
 #include "config.h"
 #include "InspectorTestTypeBuilders.h"
_______________________________________________
webkit-changes mailing list
webkit-changes@lists.webkit.org
https://lists.webkit.org/mailman/listinfo/webkit-changes

Reply via email to