WebKit Bugzilla
New
Browse
Log In
×
Sign in with GitHub
or
Remember my login
Create Account
·
Forgot Password
Forgotten password account recovery
RESOLVED FIXED
123945
Cosmetic: rename xxxId to xxxID for ScriptId, SourceId, and BreakpointId
https://bugs.webkit.org/show_bug.cgi?id=123945
Summary
Cosmetic: rename xxxId to xxxID for ScriptId, SourceId, and BreakpointId
Mark Lam
Reported
2013-11-06 17:40:30 PST
Currently, these types and variable sometimes use "Id" in their names, and "ID" at other times. I'm changing these for Inspector and Debugger related files for consistency. This will also make it easier to review changes for the patch for
https://bugs.webkit.org/show_bug.cgi?id=121796
later. There is one exception: the Inspector protocol (.json files) and JS code uses "breakpointId" and "scriptId". For backward compatibility, we should not change the .json protocol files. So, as a rule, I left these .json and .js files alone, along with their relevant C++ files. This change is purely cosmetic, and has been run on the layout tests without any regression. Patch coming soon.
Attachments
the patch.
(51.94 KB, patch)
2013-11-06 18:16 PST
,
Mark Lam
mark.lam
: review-
Details
Formatted Diff
Diff
patch 2: changed some IDs to Identifiers in InspectorDebuggerAgent because those are meant to be strings.
(52.31 KB, patch)
2013-11-07 11:14 PST
,
Mark Lam
ggaren
: review+
Details
Formatted Diff
Diff
Show Obsolete
(1)
View All
Add attachment
proposed patch, testcase, etc.
Mark Lam
Comment 1
2013-11-06 18:16:08 PST
Created
attachment 216254
[details]
the patch.
WebKit Commit Bot
Comment 2
2013-11-06 18:17:01 PST
Attachment 216254
[details]
did not pass style-queue: Failed to run "['Tools/Scripts/check-webkit-style', '--diff-files', u'Source/JavaScriptCore/ChangeLog', u'Source/JavaScriptCore/debugger/DebuggerCallFrame.cpp', u'Source/JavaScriptCore/debugger/DebuggerCallFrame.h', u'Source/WebCore/ChangeLog', u'Source/WebCore/bindings/js/JSInjectedScriptHostCustom.cpp', u'Source/WebCore/bindings/js/JavaScriptCallFrame.h', u'Source/WebCore/bindings/js/ScriptDebugServer.cpp', u'Source/WebCore/bindings/js/ScriptDebugServer.h', u'Source/WebCore/inspector/InspectorConsoleAgent.cpp', u'Source/WebCore/inspector/InspectorConsoleAgent.h', u'Source/WebCore/inspector/InspectorConsoleInstrumentation.h', u'Source/WebCore/inspector/InspectorDOMAgent.cpp', u'Source/WebCore/inspector/InspectorDebuggerAgent.cpp', u'Source/WebCore/inspector/InspectorDebuggerAgent.h', u'Source/WebCore/inspector/InspectorInstrumentation.cpp', u'Source/WebCore/inspector/InspectorInstrumentation.h', u'Source/WebCore/inspector/ScriptDebugListener.h', u'Source/WebKit/mac/ChangeLog', u'Source/WebKit/mac/WebView/WebScriptDebugger.mm']" exit_code: 1 Source/WebCore/inspector/InspectorDebuggerAgent.cpp:305: The parameter type should use PassRefPtr instead of RefPtr. [readability/pass_ptr] [5] Total errors found: 1 in 19 files If any of these errors are false positives, please file a bug against check-webkit-style.
Timothy Hatcher
Comment 3
2013-11-06 19:32:31 PST
Comment on
attachment 216254
[details]
the patch. I don't really like "ID", it isn't any better than "Id". Maybe even worse. I would prefer spelling out "Identifier" (WebKit style is to not abbreviate).
Geoffrey Garen
Comment 4
2013-11-07 09:07:00 PST
Should we go with "Identifier", then? ("Id" seems wrong according to WebKit style, since it's a shortening like an acronym.)
Timothy Hatcher
Comment 5
2013-11-07 09:33:36 PST
(In reply to
comment #4
)
> Should we go with "Identifier", then? ("Id" seems wrong according to WebKit style, since it's a shortening like an acronym.)
I agree, "Id" is wrong too.
Mark Lam
Comment 6
2013-11-07 10:00:19 PST
OK, we have an agreement that "Id" is not the right choice. However, there are benefits to go with "ID" as a pseudo-acronym instead of "Identifier". These benefits are: 1. "ID" is short. This makes for less verbose code which is easier to read. This is valuable unless it conflicts with 2 below ... 2. It should be easy to understand. For the cases of ScriptID, SourceID, and BreakpointID, I believe the meaning is clear and anyone who works with this area of the code would commonly interpret "ID" here to mean "Identifier" without needing it to be spelled out. 3. On a more subjective level, in VM / parser / debugger type code, "Identiier" is often associated with a string / symbol value, whereas "ID" is often associated with a numeric cookie / token. My intent is for SourceID and BreakpointID to become numeric tokens in the patch for
https://bugs.webkit.org/show_bug.cgi?id=121796
, and this current patch is meant to minimize the cosmetic changes ahead of time. Per our offline discussion, we'll move forward with "ID". That said, I do see areas in this patch where I used "ID" where the value is intended to be a string. I'll upload another patch so that it adheres to reason 3 above.
Mark Lam
Comment 7
2013-11-07 11:14:06 PST
Created
attachment 216317
[details]
patch 2: changed some IDs to Identifiers in InspectorDebuggerAgent because those are meant to be strings. There are some places where ScriptID or SourceID is a string. I chose to keep those as "ID"s because they ultimately hold a numeric SourceID value, but just happened to be encoded in a string. In contrast, the InspectorDebuggerAgent actually has a different representation of breakpoint ids which are string names. I renamed the "ID"s here to "Identifier". As a reminder, this patch is meant to reduce the cosmetic changes that will come with
https://bugs.webkit.org/show_bug.cgi?id=121796
. With
https://bugs.webkit.org/show_bug.cgi?id=121796
, all the SourceIDs and BreakpointIDs in JSC and in the ScriptDebugServer will be numeric. This current patch makes use of that knowledge in choosing whether to use "ID" or "Identifier" in the names.
WebKit Commit Bot
Comment 8
2013-11-07 11:15:13 PST
Attachment 216317
[details]
did not pass style-queue: Failed to run "['Tools/Scripts/check-webkit-style', '--diff-files', u'Source/JavaScriptCore/ChangeLog', u'Source/JavaScriptCore/debugger/DebuggerCallFrame.cpp', u'Source/JavaScriptCore/debugger/DebuggerCallFrame.h', u'Source/WebCore/ChangeLog', u'Source/WebCore/bindings/js/JSInjectedScriptHostCustom.cpp', u'Source/WebCore/bindings/js/JavaScriptCallFrame.h', u'Source/WebCore/bindings/js/ScriptDebugServer.cpp', u'Source/WebCore/bindings/js/ScriptDebugServer.h', u'Source/WebCore/inspector/InspectorConsoleAgent.cpp', u'Source/WebCore/inspector/InspectorConsoleAgent.h', u'Source/WebCore/inspector/InspectorConsoleInstrumentation.h', u'Source/WebCore/inspector/InspectorDOMAgent.cpp', u'Source/WebCore/inspector/InspectorDebuggerAgent.cpp', u'Source/WebCore/inspector/InspectorDebuggerAgent.h', u'Source/WebCore/inspector/InspectorInstrumentation.cpp', u'Source/WebCore/inspector/InspectorInstrumentation.h', u'Source/WebCore/inspector/ScriptDebugListener.h', u'Source/WebKit/mac/ChangeLog', u'Source/WebKit/mac/WebView/WebScriptDebugger.mm']" exit_code: 1 Source/WebCore/inspector/InspectorDebuggerAgent.cpp:305: The parameter type should use PassRefPtr instead of RefPtr. [readability/pass_ptr] [5] Total errors found: 1 in 19 files If any of these errors are false positives, please file a bug against check-webkit-style.
Geoffrey Garen
Comment 9
2013-11-07 11:56:31 PST
Comment on
attachment 216317
[details]
patch 2: changed some IDs to Identifiers in InspectorDebuggerAgent because those are meant to be strings. Looks like Tim signed off on this, so r=me.
Mark Lam
Comment 10
2013-11-07 12:16:39 PST
Thanks for the review. Landed in
r158862
: <
http://trac.webkit.org/r158862
>.
Note
You need to
log in
before you can comment on or make changes to this bug.
Top of Page
Format For Printing
XML
Clone This Bug