RESOLVED FIXED 64691
Web Inspector: RuntimeAgent.evaluateOn should not require "return X;" syntax.
https://bugs.webkit.org/show_bug.cgi?id=64691
Summary Web Inspector: RuntimeAgent.evaluateOn should not require "return X;" syntax.
Pavel Feldman
Reported 2011-07-18 06:35:12 PDT
Client code should look like RuntimeAgent.evaluateOn("X"), not RuntimeAgent.evaluateOn("return X").
Attachments
Patch (12.25 KB, patch)
2011-07-18 09:02 PDT, Pavel Feldman
no flags
Patch (21.50 KB, patch)
2011-07-21 08:27 PDT, Pavel Feldman
yurys: review+
Pavel Feldman
Comment 1 2011-07-18 08:37:24 PDT
It turns out that the easiest would be to pass entire function declaration into this method.
Pavel Feldman
Comment 2 2011-07-18 09:02:29 PDT
WebKit Review Bot
Comment 3 2011-07-18 09:03:57 PDT
Attachment 101164 [details] did not pass style-queue: Failed to run "['Tools/Scripts/check-webkit-style', '--diff-files', u'LayoutTests/ChangeLog', u'LayoutTests/insp..." exit_code: 1 Source/WebCore/inspector/InjectedScript.cpp:66: The parameter type should use PassRefPtr instead of RefPtr. [readability/pass_ptr] [5] Source/WebCore/inspector/InjectedScript.h:59: The parameter type should use PassRefPtr instead of RefPtr. [readability/pass_ptr] [5] Total errors found: 2 in 11 files If any of these errors are false positives, please file a bug against check-webkit-style.
Pavel Feldman
Comment 4 2011-07-21 08:27:03 PDT
WebKit Review Bot
Comment 5 2011-07-21 08:30:32 PDT
Attachment 101594 [details] did not pass style-queue: Failed to run "['Tools/Scripts/check-webkit-style', '--diff-files', u'LayoutTests/ChangeLog', u'LayoutTests/insp..." exit_code: 1 Source/WebCore/inspector/InjectedScript.cpp:66: The parameter type should use PassRefPtr instead of RefPtr. [readability/pass_ptr] [5] Source/WebCore/inspector/InspectorRuntimeAgent.h:57: The parameter type should use PassRefPtr instead of RefPtr. [readability/pass_ptr] [5] Source/WebCore/inspector/InspectorRuntimeAgent.cpp:85: The parameter type should use PassRefPtr instead of RefPtr. [readability/pass_ptr] [5] Source/WebCore/inspector/InjectedScript.h:59: The parameter type should use PassRefPtr instead of RefPtr. [readability/pass_ptr] [5] Total errors found: 4 in 15 files If any of these errors are false positives, please file a bug against check-webkit-style.
Yury Semikhatsky
Comment 6 2011-07-21 08:40:49 PDT
Comment on attachment 101594 [details] Patch View in context: https://bugs.webkit.org/attachment.cgi?id=101594&action=review > LayoutTests/ChangeLog:5 > + Please provide the change description. > Source/WebCore/inspector/InjectedScriptSource.js:264 > + var resolvedArg = this._objectForId(this._parseObjectId(arguments[i])); You should drop(?) arguments in case they are from other injected scripts. > Source/WebCore/inspector/Inspector.json:264 > + { "name": "arguments", "type": "array", "items": { "type": "objectId", "description": "Identifier of the argument" }, "optional": true, "description": "Call arguments." } Please describe what happens when the arguments are from different frames.
Pavel Feldman
Comment 7 2011-07-21 08:49:47 PDT
Note You need to log in before you can comment on or make changes to this bug.