[webkit-reviews] review requested: [Bug 66482] Web Inspector: backend js api: an ability to skip optional arguments in the middle of the argument list is required : [Attachment 104370] [patch] initial version

bugzilla-daemon at webkit.org bugzilla-daemon at webkit.org
Thu Aug 18 11:26:10 PDT 2011


Ilya Tikhonovsky <loislo at chromium.org> has asked  for review:
Bug 66482: Web Inspector: backend js api: an ability to skip optional arguments
in the middle of the argument list is required
https://bugs.webkit.org/show_bug.cgi?id=66482

Attachment 104370: [patch] initial version
https://bugs.webkit.org/attachment.cgi?id=104370&action=review

------- Additional Comments from Ilya Tikhonovsky <loislo at chromium.org>
RuntimeAgent.evaluate(value, undefined, undefined, true,
evaluatedCallback.bind(this));

can be replaced with 

RuntimeAgent.evaluate.invoke({expression:value, doNotPauseOnExceptions:true},
evaluatedCallback.bind(this));


More information about the webkit-reviews mailing list