Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(87)

Issue 2728563002: [inspector] added type of break location into getPossibleBreakpoints output (Closed)

Created:
3 years, 9 months ago by kozy
Modified:
3 years, 9 months ago
CC:
v8-reviews_googlegroups.com, Yang, devtools-reviews_chromium.org
Target Ref:
refs/pending/heads/master
Project:
v8
Visibility:
Public.

Description

[inspector] added type of break location into getPossibleBreakpoints output This CL provide type with each break location, type could be: call, return or debugger statement. BUG=chromium:432469 R=yangguo@chromium.org,dgozman@chromium.org Review-Url: https://codereview.chromium.org/2728563002 Cr-Commit-Position: refs/heads/master@{#43619} Committed: https://chromium.googlesource.com/v8/v8/+/562da356141da650d0597ddf2fb075ee997a3622

Patch Set 1 #

Total comments: 1

Patch Set 2 : a #

Total comments: 4

Patch Set 3 : addressed comments #

Patch Set 4 : fixed compilation #

Total comments: 6

Patch Set 5 : addressed comments #

Total comments: 2

Patch Set 6 : moved filtering #

Total comments: 2

Patch Set 7 : added DCHECK #

Unified diffs Side-by-side diffs Delta from patch set Stats (+312 lines, -203 lines) Patch
M src/api.cc View 1 2 3 4 5 6 3 chunks +16 lines, -7 lines 0 comments Download
M src/debug/debug.h View 1 2 3 4 5 6 2 chunks +3 lines, -1 line 0 comments Download
M src/debug/debug.cc View 1 2 3 4 5 6 4 chunks +24 lines, -15 lines 0 comments Download
M src/debug/debug-interface.h View 1 2 3 4 5 6 1 chunk +4 lines, -4 lines 0 comments Download
M src/debug/interface-types.h View 1 2 3 4 2 chunks +19 lines, -0 lines 0 comments Download
M src/inspector/js_protocol.json View 1 2 3 4 5 6 2 chunks +12 lines, -1 line 0 comments Download
M src/inspector/v8-debugger-agent-impl.h View 1 2 3 4 5 6 1 chunk +2 lines, -2 lines 0 comments Download
M src/inspector/v8-debugger-agent-impl.cc View 1 2 3 4 5 6 3 chunks +31 lines, -10 lines 0 comments Download
M src/inspector/v8-debugger-script.h View 1 chunk +1 line, -1 line 0 comments Download
M src/inspector/v8-debugger-script.cc View 1 2 3 4 5 6 3 chunks +34 lines, -5 lines 0 comments Download
M src/wasm/wasm-objects.h View 1 chunk +1 line, -1 line 0 comments Download
M src/wasm/wasm-objects.cc View 1 2 3 4 2 chunks +2 lines, -2 lines 0 comments Download
M test/cctest/wasm/test-wasm-breakpoints.cc View 1 2 3 2 chunks +2 lines, -2 lines 0 comments Download
M test/inspector/debugger/get-possible-breakpoints-array-literal-expected.txt View 1 2 1 chunk +2 lines, -0 lines 0 comments Download
M test/inspector/debugger/get-possible-breakpoints-master.js View 1 2 1 chunk +8 lines, -1 line 0 comments Download
M test/inspector/debugger/get-possible-breakpoints-master-expected.txt View 1 chunk +151 lines, -151 lines 0 comments Download

Messages

Total messages: 31 (18 generated)
kozy
Dmitry and Yang, please take a look. https://codereview.chromium.org/2728563002/diff/1/test/inspector/debugger/get-possible-breakpoints-master-expected.txt File test/inspector/debugger/get-possible-breakpoints-master-expected.txt (right): https://codereview.chromium.org/2728563002/diff/1/test/inspector/debugger/get-possible-breakpoints-master-expected.txt#newcode98 test/inspector/debugger/get-possible-breakpoints-master-expected.txt:98: for (var ...
3 years, 9 months ago (2017-03-01 03:07:34 UTC) #1
dgozman
https://codereview.chromium.org/2728563002/diff/20001/src/debug/interface-types.h File src/debug/interface-types.h (right): https://codereview.chromium.org/2728563002/diff/20001/src/debug/interface-types.h#newcode75 src/debug/interface-types.h:75: class V8_EXPORT_PRIVATE BreakLocation { Let's inherit from Location? https://codereview.chromium.org/2728563002/diff/20001/src/inspector/js_protocol.json ...
3 years, 9 months ago (2017-03-01 22:10:47 UTC) #2
kozy
thanks, all done! https://codereview.chromium.org/2728563002/diff/20001/src/debug/interface-types.h File src/debug/interface-types.h (right): https://codereview.chromium.org/2728563002/diff/20001/src/debug/interface-types.h#newcode75 src/debug/interface-types.h:75: class V8_EXPORT_PRIVATE BreakLocation { On 2017/03/01 ...
3 years, 9 months ago (2017-03-01 23:14:13 UTC) #3
kozy
+Clemens, I need owner lgtm for two wasm related files.
3 years, 9 months ago (2017-03-01 23:14:46 UTC) #5
Clemens Hammacher
On 2017/03/01 at 23:14:46, kozyatinskiy wrote: > +Clemens, I need owner lgtm for two wasm ...
3 years, 9 months ago (2017-03-02 10:09:07 UTC) #14
Yang
https://codereview.chromium.org/2728563002/diff/60001/src/api.cc File src/api.cc (right): https://codereview.chromium.org/2728563002/diff/60001/src/api.cc#newcode9274 src/api.cc:9274: for (const auto& location : v8_locations) { Some comments ...
3 years, 9 months ago (2017-03-02 20:06:57 UTC) #15
kozy
please take another look. https://codereview.chromium.org/2728563002/diff/60001/src/api.cc File src/api.cc (right): https://codereview.chromium.org/2728563002/diff/60001/src/api.cc#newcode9274 src/api.cc:9274: for (const auto& location : ...
3 years, 9 months ago (2017-03-02 22:38:10 UTC) #16
dgozman
lgtm https://codereview.chromium.org/2728563002/diff/80001/src/api.cc File src/api.cc (right): https://codereview.chromium.org/2728563002/diff/80001/src/api.cc#newcode9249 src/api.cc:9249: for (const auto& location : v8_locations) { I ...
3 years, 9 months ago (2017-03-03 18:55:56 UTC) #17
kozy
all done, Yang please take another look. https://codereview.chromium.org/2728563002/diff/80001/src/api.cc File src/api.cc (right): https://codereview.chromium.org/2728563002/diff/80001/src/api.cc#newcode9249 src/api.cc:9249: for (const ...
3 years, 9 months ago (2017-03-03 22:44:15 UTC) #18
Yang
LGTM. nice. https://codereview.chromium.org/2728563002/diff/100001/src/inspector/v8-debugger-script.cc File src/inspector/v8-debugger-script.cc (right): https://codereview.chromium.org/2728563002/diff/100001/src/inspector/v8-debugger-script.cc#newcode176 src/inspector/v8-debugger-script.cc:176: current = allLocations[i]; Can we DCHECK that ...
3 years, 9 months ago (2017-03-06 14:41:11 UTC) #23
kozy
https://codereview.chromium.org/2728563002/diff/100001/src/inspector/v8-debugger-script.cc File src/inspector/v8-debugger-script.cc (right): https://codereview.chromium.org/2728563002/diff/100001/src/inspector/v8-debugger-script.cc#newcode176 src/inspector/v8-debugger-script.cc:176: current = allLocations[i]; On 2017/03/06 14:41:11, Yang wrote: > ...
3 years, 9 months ago (2017-03-06 18:25:25 UTC) #25
commit-bot: I haz the power
CQ is trying da patch. Follow status at https://chromium-cq-status.appspot.com/v2/patch-status/codereview.chromium.org/2728563002/140001
3 years, 9 months ago (2017-03-06 18:25:35 UTC) #28
commit-bot: I haz the power
3 years, 9 months ago (2017-03-06 20:48:02 UTC) #31
Message was sent while issue was closed.
Committed patchset #7 (id:140001) as
https://chromium.googlesource.com/v8/v8/+/562da356141da650d0597ddf2fb075ee997...

Powered by Google App Engine
This is Rietveld 408576698