RESOLVED FIXED 123057
Some includes in JSC seem to use an incorrect style
https://bugs.webkit.org/show_bug.cgi?id=123057
Summary Some includes in JSC seem to use an incorrect style
Alexey Proskuryakov
Reported 2013-10-19 00:07:33 PDT
What does #include <heap/Weak.h> even mean inside JSC?
Attachments
proposed patch (4.36 KB, patch)
2013-10-19 00:10 PDT, Alexey Proskuryakov
no flags
with include order fix (4.41 KB, patch)
2013-10-19 00:14 PDT, Alexey Proskuryakov
ggaren: review+
Alexey Proskuryakov
Comment 1 2013-10-19 00:10:51 PDT
Created attachment 214642 [details] proposed patch FWIW, some of these were introduced as recently as bug 114220, not sure why. Maybe there was a reason? Let's see if this at least compiles everywhere...
WebKit Commit Bot
Comment 2 2013-10-19 00:11:50 PDT
Attachment 214642 [details] did not pass style-queue: Failed to run "['Tools/Scripts/check-webkit-style', '--diff-files', u'Source/JavaScriptCore/API/JSContextRef.cpp', u'Source/JavaScriptCore/API/JSStringRefCF.cpp', u'Source/JavaScriptCore/API/JSValueRef.cpp', u'Source/JavaScriptCore/API/OpaqueJSString.cpp', u'Source/JavaScriptCore/ChangeLog', u'Source/JavaScriptCore/jit/JIT.h', u'Source/JavaScriptCore/parser/SyntaxChecker.h', u'Source/JavaScriptCore/runtime/WeakGCMap.h']" exit_code: 1 Source/JavaScriptCore/API/JSValueRef.cpp:34: Alphabetical sorting problem. [build/include_order] [4] Total errors found: 1 in 8 files If any of these errors are false positives, please file a bug against check-webkit-style.
Alexey Proskuryakov
Comment 3 2013-10-19 00:14:00 PDT
Created attachment 214643 [details] with include order fix
Geoffrey Garen
Comment 4 2013-10-19 11:56:29 PDT
I believe we need <> style for any header that will be included into a WebCore file.
Geoffrey Garen
Comment 5 2013-10-19 11:56:40 PDT
Comment on attachment 214643 [details] with include order fix r=me
Alexey Proskuryakov
Comment 6 2013-10-19 12:10:58 PDT
> I believe we need <> style for any header that will be included into a WebCore file. Some of these headers are included in WebCore... I'm confused :(
Geoffrey Garen
Comment 7 2013-10-19 12:41:46 PDT
My understanding is that, on Mac, WebCore includes JavaScriptCore headers through the ForwardingHeaders folder, which is treated as a non-local include path. Hence the <> and the folder prefix. Maybe this has changed somehow?
Alexey Proskuryakov
Comment 8 2013-10-19 16:58:28 PDT
Looks like here is what we somehow naturally stabilized on: - JSC API headers are included from other projects as <JavaScriptCore/Foo.h>. This works on Mac because of frameworks, and it works on other platforms because of Source/JavaScriptCore/ForwardingHeaders/JavaScriptCore. - Other JSC headers are included from other projects as <runtime/Foo.h>. This works because of forwarding headers in those projects, I think. - JSC headers themselves include other JSC headers as "Foo.h". I couldn't figure out how this works on Mac - perhaps Xcode builds a header map for all JSC private headers? On other platforms, it works because each project adds all JSC subdirectories to search paths. I have my reservations about the beauty of this scheme (and I could misunderstand something). But now I think that it's good to land this patch for consistency. Also, it will make it easier for me to fix the build in bug 86914.
Alexey Proskuryakov
Comment 9 2013-10-19 16:59:49 PDT
Note You need to log in before you can comment on or make changes to this bug.