Title: [157688] trunk/Source/_javascript_Core
- Revision
- 157688
- Author
- [email protected]
- Date
- 2013-10-19 17:01:17 -0700 (Sat, 19 Oct 2013)
Log Message
Some includes in JSC seem to use an incorrect style
https://bugs.webkit.org/show_bug.cgi?id=123057
Reviewed by Geoffrey Garen.
Changed pseudo-system includes to user ones.
* API/JSContextRef.cpp:
* API/JSStringRefCF.cpp:
* API/JSValueRef.cpp:
* API/OpaqueJSString.cpp:
* jit/JIT.h:
* parser/SyntaxChecker.h:
* runtime/WeakGCMap.h:
Modified Paths
Diff
Modified: trunk/Source/_javascript_Core/API/JSContextRef.cpp (157687 => 157688)
--- trunk/Source/_javascript_Core/API/JSContextRef.cpp 2013-10-19 23:38:14 UTC (rev 157687)
+++ trunk/Source/_javascript_Core/API/JSContextRef.cpp 2013-10-20 00:01:17 UTC (rev 157688)
@@ -28,9 +28,9 @@
#include "JSContextRefPrivate.h"
#include "APICast.h"
+#include "CallFrame.h"
#include "CallFrameInlines.h"
#include "InitializeThreading.h"
-#include <interpreter/CallFrame.h>
#include "JSCallbackObject.h"
#include "JSClassRef.h"
#include "JSGlobalObject.h"
Modified: trunk/Source/_javascript_Core/API/JSStringRefCF.cpp (157687 => 157688)
--- trunk/Source/_javascript_Core/API/JSStringRefCF.cpp 2013-10-19 23:38:14 UTC (rev 157687)
+++ trunk/Source/_javascript_Core/API/JSStringRefCF.cpp 2013-10-20 00:01:17 UTC (rev 157688)
@@ -28,9 +28,9 @@
#include "APICast.h"
#include "InitializeThreading.h"
+#include "JSCJSValue.h"
#include "JSStringRef.h"
#include "OpaqueJSString.h"
-#include <runtime/JSCJSValue.h>
#include <wtf/StdLibExtras.h>
JSStringRef JSStringCreateWithCFString(CFStringRef string)
Modified: trunk/Source/_javascript_Core/API/JSValueRef.cpp (157687 => 157688)
--- trunk/Source/_javascript_Core/API/JSValueRef.cpp 2013-10-19 23:38:14 UTC (rev 157687)
+++ trunk/Source/_javascript_Core/API/JSValueRef.cpp 2013-10-20 00:01:17 UTC (rev 157688)
@@ -29,16 +29,15 @@
#include "APICast.h"
#include "APIShims.h"
#include "JSAPIWrapperObject.h"
+#include "JSCJSValue.h"
#include "JSCallbackObject.h"
+#include "JSGlobalObject.h"
+#include "JSONObject.h"
+#include "JSString.h"
+#include "LiteralParser.h"
+#include "Operations.h"
+#include "Protect.h"
-#include <runtime/JSCJSValue.h>
-#include <runtime/JSGlobalObject.h>
-#include <runtime/JSONObject.h>
-#include <runtime/JSString.h>
-#include <runtime/LiteralParser.h>
-#include <runtime/Operations.h>
-#include <runtime/Protect.h>
-
#include <wtf/Assertions.h>
#include <wtf/text/StringHash.h>
#include <wtf/text/WTFString.h>
Modified: trunk/Source/_javascript_Core/API/OpaqueJSString.cpp (157687 => 157688)
--- trunk/Source/_javascript_Core/API/OpaqueJSString.cpp 2013-10-19 23:38:14 UTC (rev 157687)
+++ trunk/Source/_javascript_Core/API/OpaqueJSString.cpp 2013-10-20 00:01:17 UTC (rev 157688)
@@ -26,9 +26,9 @@
#include "config.h"
#include "OpaqueJSString.h"
-#include <interpreter/CallFrame.h>
-#include <runtime/JSGlobalObject.h>
-#include <runtime/Identifier.h>
+#include "CallFrame.h"
+#include "Identifier.h"
+#include "JSGlobalObject.h"
using namespace JSC;
Modified: trunk/Source/_javascript_Core/ChangeLog (157687 => 157688)
--- trunk/Source/_javascript_Core/ChangeLog 2013-10-19 23:38:14 UTC (rev 157687)
+++ trunk/Source/_javascript_Core/ChangeLog 2013-10-20 00:01:17 UTC (rev 157688)
@@ -1,3 +1,20 @@
+2013-10-19 Alexey Proskuryakov <[email protected]>
+
+ Some includes in JSC seem to use an incorrect style
+ https://bugs.webkit.org/show_bug.cgi?id=123057
+
+ Reviewed by Geoffrey Garen.
+
+ Changed pseudo-system includes to user ones.
+
+ * API/JSContextRef.cpp:
+ * API/JSStringRefCF.cpp:
+ * API/JSValueRef.cpp:
+ * API/OpaqueJSString.cpp:
+ * jit/JIT.h:
+ * parser/SyntaxChecker.h:
+ * runtime/WeakGCMap.h:
+
2013-10-19 Filip Pizlo <[email protected]>
Baseline JIT and DFG IC code generation should be unified and rationalized
Modified: trunk/Source/_javascript_Core/jit/JIT.h (157687 => 157688)
--- trunk/Source/_javascript_Core/jit/JIT.h 2013-10-19 23:38:14 UTC (rev 157687)
+++ trunk/Source/_javascript_Core/jit/JIT.h 2013-10-20 00:01:17 UTC (rev 157688)
@@ -47,8 +47,8 @@
#include "LegacyProfiler.h"
#include "Opcode.h"
#include "ResultType.h"
+#include "SamplingTool.h"
#include "UnusedPointer.h"
-#include <bytecode/SamplingTool.h>
namespace JSC {
Modified: trunk/Source/_javascript_Core/parser/SyntaxChecker.h (157687 => 157688)
--- trunk/Source/_javascript_Core/parser/SyntaxChecker.h 2013-10-19 23:38:14 UTC (rev 157687)
+++ trunk/Source/_javascript_Core/parser/SyntaxChecker.h 2013-10-20 00:01:17 UTC (rev 157688)
@@ -27,7 +27,7 @@
#define SyntaxChecker_h
#include "Lexer.h"
-#include <yarr/YarrSyntaxChecker.h>
+#include "YarrSyntaxChecker.h"
namespace JSC {
Modified: trunk/Source/_javascript_Core/runtime/WeakGCMap.h (157687 => 157688)
--- trunk/Source/_javascript_Core/runtime/WeakGCMap.h 2013-10-19 23:38:14 UTC (rev 157687)
+++ trunk/Source/_javascript_Core/runtime/WeakGCMap.h 2013-10-20 00:01:17 UTC (rev 157688)
@@ -26,8 +26,8 @@
#ifndef WeakGCMap_h
#define WeakGCMap_h
-#include <heap/Weak.h>
-#include <heap/WeakInlines.h>
+#include "Weak.h"
+#include "WeakInlines.h"
#include <wtf/HashMap.h>
namespace JSC {
_______________________________________________
webkit-changes mailing list
[email protected]
https://lists.webkit.org/mailman/listinfo/webkit-changes