WebKit Bugzilla
New
Browse
Log In
×
Sign in with GitHub
or
Remember my login
Create Account
·
Forgot Password
Forgotten password account recovery
RESOLVED FIXED
110461
Web Inspector: [Protocol] Generate JS enum definitions.
https://bugs.webkit.org/show_bug.cgi?id=110461
Summary
Web Inspector: [Protocol] Generate JS enum definitions.
Eugene Klyuchnikov
Reported
2013-02-21 05:51:05 PST
In protocol enums are defined in 3 ways: 1) As a type, like Page.ResourceType, currently 3 occurrences; 2) As type member, like Runtime.RemoteObject.type, 18 occurrences; 3) Directly in command parameters, like Page.getScriptExecutionStatus.type, 5 occurrences. Generating corresponding type annotations would help to compiler to point errors like this: this.responseReceived(requestId, frameId, loaderId, time, "Other" /* actually in should be "other" */, redirectResponse);
Attachments
Patch
(10.06 KB, patch)
2013-02-21 07:43 PST
,
Eugene Klyuchnikov
no flags
Details
Formatted Diff
Diff
Patch
(9.91 KB, patch)
2013-02-22 01:02 PST
,
Eugene Klyuchnikov
no flags
Details
Formatted Diff
Diff
Diff of generated files.
(20.07 KB, patch)
2013-02-22 01:29 PST
,
Eugene Klyuchnikov
no flags
Details
Formatted Diff
Diff
Patch
(12.60 KB, patch)
2013-02-26 07:24 PST
,
Eugene Klyuchnikov
no flags
Details
Formatted Diff
Diff
Difference in generated files.
(20.29 KB, patch)
2013-02-26 07:31 PST
,
Eugene Klyuchnikov
no flags
Details
Formatted Diff
Diff
Show Obsolete
(3)
View All
Add attachment
proposed patch, testcase, etc.
Eugene Klyuchnikov
Comment 1
2013-02-21 07:43:53 PST
Created
attachment 189527
[details]
Patch
Andrey Adaikin
Comment 2
2013-02-21 08:23:21 PST
This is exiting! Could you plz also attach diffs of the generated files as a patch?
Eugene Klyuchnikov
Comment 3
2013-02-21 22:21:22 PST
(In reply to
comment #2
)
> This is exiting! > Could you plz also attach diffs of the generated files as a patch?
Diff for protocol-externs.js:
http://diffchecker.com/1l1aEUqu
Diff for InspectorBackendCommands.js:
http://diffchecker.com/67s9Jkv5
Pavel Feldman
Comment 4
2013-02-22 00:25:03 PST
Comment on
attachment 189527
[details]
Patch You should produce CamelCase enum literals per WebKit code guidelines.
Eugene Klyuchnikov
Comment 5
2013-02-22 01:02:44 PST
Created
attachment 189710
[details]
Patch
Pavel Feldman
Comment 6
2013-02-22 01:06:04 PST
Could you attach the diff in the generated files as a patch to this bug?
Eugene Klyuchnikov
Comment 7
2013-02-22 01:06:30 PST
Updated literal names. New diffs: protocol-externs.js:
http://diffchecker.com/p0799b5q
InspectorBackendCommands.js:
http://www.diffchecker.com/69982Uz9
Pavel Feldman
Comment 8
2013-02-22 01:07:54 PST
Could you attach the diff in the generated files as a patch to this bug?
Eugene Klyuchnikov
Comment 9
2013-02-22 01:29:34 PST
Created
attachment 189713
[details]
Diff of generated files.
Timothy Hatcher
Comment 10
2013-02-22 03:57:59 PST
Comment on
attachment 189713
[details]
Diff of generated files. View in context:
https://bugs.webkit.org/attachment.cgi?id=189713&action=review
> new/InspectorBackendCommands.js:91 > +InspectorBackend.registerEnum("Console.ConsoleMessageSource", {Html: "html", Wml: "wml", Xml: "xml", Javascript: "javascript", Network: "network", ConsoleApi: "console-api", Other: "other"});
You should special case acronyms to make them all CAPS. Html => HTML, ConsoleApi => ConsoleAPI, etc.
Pavel Feldman
Comment 11
2013-02-22 07:27:03 PST
Comment on
attachment 189710
[details]
Patch View in context:
https://bugs.webkit.org/attachment.cgi?id=189710&action=review
> Source/WebCore/inspector/front-end/InspectorBackend.js:85 > + var domainAndMethod = type.split(".");
You need to call this from loadFromJSONIfNeeded as well.
Andrey Adaikin
Comment 12
2013-02-22 07:52:32 PST
Comment on
attachment 189710
[details]
Patch View in context:
https://bugs.webkit.org/attachment.cgi?id=189710&action=review
> Source/WebCore/inspector/front-end/InspectorBackend.js:90 > + this._initialized = true;
Is this correct? seems suspicious to have this line both in registerCommand and registerEnum
Eugene Klyuchnikov
Comment 13
2013-02-26 07:24:42 PST
Created
attachment 190278
[details]
Patch
Eugene Klyuchnikov
Comment 14
2013-02-26 07:27:10 PST
Comment on
attachment 189710
[details]
Patch View in context:
https://bugs.webkit.org/attachment.cgi?id=189710&action=review
>> Source/WebCore/inspector/front-end/InspectorBackend.js:85 >> + var domainAndMethod = type.split("."); > > You need to call this from loadFromJSONIfNeeded as well.
Done.
>> Source/WebCore/inspector/front-end/InspectorBackend.js:90 >> + this._initialized = true; > > Is this correct? seems suspicious to have this line both in registerCommand and registerEnum
As I see, this marker is used do avoid recursion/repetitive loading. So, all 3 methods should mark instance as initialized.
Eugene Klyuchnikov
Comment 15
2013-02-26 07:27:53 PST
Comment on
attachment 189713
[details]
Diff of generated files. View in context:
https://bugs.webkit.org/attachment.cgi?id=189713&action=review
>> new/InspectorBackendCommands.js:91 >> +InspectorBackend.registerEnum("Console.ConsoleMessageSource", {Html: "html", Wml: "wml", Xml: "xml", Javascript: "javascript", Network: "network", ConsoleApi: "console-api", Other: "other"}); > > You should special case acronyms to make them all CAPS. Html => HTML, ConsoleApi => ConsoleAPI, etc.
Fixed
Eugene Klyuchnikov
Comment 16
2013-02-26 07:31:55 PST
Created
attachment 190280
[details]
Difference in generated files.
WebKit Review Bot
Comment 17
2013-02-27 23:52:17 PST
Comment on
attachment 190278
[details]
Patch Clearing flags on attachment: 190278 Committed
r144265
: <
http://trac.webkit.org/changeset/144265
>
WebKit Review Bot
Comment 18
2013-02-27 23:52:22 PST
All reviewed patches have been landed. Closing bug.
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