inspector - Use script name for target title#8243
inspector - Use script name for target title#8243eugeneo wants to merge 1 commit intonodejs:masterfrom eugeneo:title_url
Conversation
src/inspector_agent.cc
Outdated
|
LGTM, ping @bnoordhuis |
src/node.cc
Outdated
There was a problem hiding this comment.
Accidental change from bool to void?
There was a problem hiding this comment.
Merge artifact. Thank you for pointing it out.
|
Thank you for the review. I uploaded a revised CL, please take a look. |
src/inspector_agent.cc
Outdated
There was a problem hiding this comment.
char& c? Then you don't need i.
|
LGTM with some comments. The missing |
|
Thank you for the review. CL was updated. Please take another look. |
|
LGTM EDIT: If you s/inspector - Use/inspector: use/ the commit log. |
|
I can fix the commit abstract at landing time. New CI: https://ci.nodejs.org/job/node-test-pull-request/3887/ |
|
@eugeneo: can you fix the linter errors from the CI? |
Changes inspector integration to use Node.js script file name as target title (reported in JSON and shown in developer tools UIs). It will also report file:// URL for the script as some tools seem to use that field to open the script in the editor.
|
Done. I'm sorry - forgot to run make cpplint... |
|
CI is green (enough). Failures are unrelated / buildbot issues. |
|
Landed as 609a265. |
Changes inspector integration to use Node.js script file name as target title (reported in JSON and shown in developer tools UIs). It will also report file:// URL for the script as some tools seem to use that field to open the script in the editor. PR-URL: #8243 Reviewed-By: bnoordhuis - Ben Noordhuis <info@bnoordhuis.nl>
Changes inspector integration to use Node.js script file name as target title (reported in JSON and shown in developer tools UIs). It will also report file:// URL for the script as some tools seem to use that field to open the script in the editor. PR-URL: nodejs#8243 Reviewed-By: bnoordhuis - Ben Noordhuis <info@bnoordhuis.nl> Conflicts: src/node.cc
Changes inspector integration to use Node.js script file name as target title (reported in JSON and shown in developer tools UIs). It will also report file:// URL for the script as some tools seem to use that field to open the script in the editor. PR-URL: #8243 Reviewed-By: bnoordhuis - Ben Noordhuis <info@bnoordhuis.nl> Conflicts: src/node.cc
Checklist
make -j4 test(UNIX), orvcbuild test nosign(Windows) passesAffected core subsystem(s)
This only touches JSON API of the V8 Inspector integration.
Description of change
Changes inspector integration to use Node.js script file name as target
title (reported in JSON and shown in developer tools UIs). It will also
report file:// URL for the script as some tools seem to use that field
to open the script in the editor.
CC: @ofrobots