Title: [208074] trunk/Source/_javascript_Core
Revision
208074
Author
utatane....@gmail.com
Date
2016-10-28 14:57:44 -0700 (Fri, 28 Oct 2016)

Log Message

Unreviewed, build fix in CLoop builds after r208063.

Include required headers.

* parser/Parser.h:
* runtime/Completion.cpp:
* runtime/JSGlobalObjectFunctions.cpp:

Modified Paths

Diff

Modified: trunk/Source/_javascript_Core/ChangeLog (208073 => 208074)


--- trunk/Source/_javascript_Core/ChangeLog	2016-10-28 21:52:22 UTC (rev 208073)
+++ trunk/Source/_javascript_Core/ChangeLog	2016-10-28 21:57:44 UTC (rev 208074)
@@ -1,3 +1,13 @@
+2016-10-28  Yusuke Suzuki  <utatane....@gmail.com>
+
+        Unreviewed, build fix in CLoop builds after r208063.
+
+        Include required headers.
+
+        * parser/Parser.h:
+        * runtime/Completion.cpp:
+        * runtime/JSGlobalObjectFunctions.cpp:
+
 2016-10-28  Ryan Haddad  <ryanhad...@apple.com>
 
         Update reference files for builtins generator tests after r208063.

Modified: trunk/Source/_javascript_Core/parser/Parser.h (208073 => 208074)


--- trunk/Source/_javascript_Core/parser/Parser.h	2016-10-28 21:52:22 UTC (rev 208073)
+++ trunk/Source/_javascript_Core/parser/Parser.h	2016-10-28 21:57:44 UTC (rev 208074)
@@ -22,6 +22,7 @@
 
 #pragma once
 
+#include "ExecutableInfo.h"
 #include "ExceptionHelpers.h"
 #include "Lexer.h"
 #include "ModuleScopeData.h"

Modified: trunk/Source/_javascript_Core/runtime/Completion.cpp (208073 => 208074)


--- trunk/Source/_javascript_Core/runtime/Completion.cpp	2016-10-28 21:52:22 UTC (rev 208073)
+++ trunk/Source/_javascript_Core/runtime/Completion.cpp	2016-10-28 21:57:44 UTC (rev 208074)
@@ -38,6 +38,7 @@
 #include "JSWithScope.h"
 #include "ModuleAnalyzer.h"
 #include "Parser.h"
+#include "ProgramExecutable.h"
 #include "ScriptProfilingScope.h"
 #include <wtf/WTFThreadData.h>
 

Modified: trunk/Source/_javascript_Core/runtime/JSGlobalObjectFunctions.cpp (208073 => 208074)


--- trunk/Source/_javascript_Core/runtime/JSGlobalObjectFunctions.cpp	2016-10-28 21:52:22 UTC (rev 208073)
+++ trunk/Source/_javascript_Core/runtime/JSGlobalObjectFunctions.cpp	2016-10-28 21:57:44 UTC (rev 208074)
@@ -26,6 +26,7 @@
 #include "JSGlobalObjectFunctions.h"
 
 #include "CallFrame.h"
+#include "EvalExecutable.h"
 #include "Interpreter.h"
 #include "JSFunction.h"
 #include "JSGlobalObject.h"
_______________________________________________
webkit-changes mailing list
webkit-changes@lists.webkit.org
https://lists.webkit.org/mailman/listinfo/webkit-changes

Reply via email to