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

Issue 113513004: Handle vmservice messages while at breakpoint. (Closed)

Created:
7 years ago by turnidge
Modified:
7 years ago
Reviewers:
Cutch, hausner
CC:
reviews_dartlang.org, vm-dev_dartlang.org
Visibility:
Public.

Description

Handle vmservice messages while at breakpoint. Allow rudimentary inspection of breakpoints from vmservice. R=hausner@google.com, johnmccutchan@google.com Committed: https://code.google.com/p/dart/source/detail?r=31233

Patch Set 1 #

Patch Set 2 : #

Patch Set 3 : #

Total comments: 8

Patch Set 4 : #

Patch Set 5 : #

Patch Set 6 : #

Patch Set 7 : #

Patch Set 8 : #

Unified diffs Side-by-side diffs Delta from patch set Stats (+1509 lines, -831 lines) Patch
M runtime/bin/dbg_message.h View 1 2 3 4 5 6 2 chunks +13 lines, -2 lines 0 comments Download
M runtime/bin/dbg_message.cc View 1 2 3 4 5 6 5 chunks +55 lines, -18 lines 0 comments Download
M runtime/bin/vmservice/client/deployed/web/index.html View 1 2 3 4 5 6 3 chunks +24 lines, -0 lines 0 comments Download
M runtime/bin/vmservice/client/deployed/web/index.html_bootstrap.dart.js View 1 2 3 4 5 6 100 chunks +318 lines, -260 lines 0 comments Download
M runtime/bin/vmservice/client/deployed/web/index_devtools.html View 1 2 3 4 5 6 3 chunks +24 lines, -0 lines 0 comments Download
M runtime/bin/vmservice/client/deployed/web/index_devtools.html_bootstrap.dart.js View 200 chunks +636 lines, -520 lines 0 comments Download
M runtime/bin/vmservice/client/lib/observatory_elements.dart View 1 2 3 4 5 6 1 chunk +1 line, -0 lines 0 comments Download
M runtime/bin/vmservice/client/lib/observatory_elements.html View 1 2 3 4 5 6 1 chunk +1 line, -0 lines 0 comments Download
A runtime/bin/vmservice/client/lib/src/observatory_elements/breakpoint_list.dart View 1 chunk +15 lines, -0 lines 0 comments Download
A runtime/bin/vmservice/client/lib/src/observatory_elements/breakpoint_list.html View 1 chunk +22 lines, -0 lines 0 comments Download
M runtime/bin/vmservice/client/lib/src/observatory_elements/isolate_summary.html View 1 2 3 4 5 6 1 chunk +3 lines, -0 lines 0 comments Download
M runtime/bin/vmservice/client/lib/src/observatory_elements/message_viewer.dart View 1 2 3 4 5 6 1 chunk +1 line, -0 lines 0 comments Download
M runtime/bin/vmservice/client/lib/src/observatory_elements/message_viewer.html View 1 2 3 4 5 6 2 chunks +4 lines, -0 lines 0 comments Download
M runtime/include/dart_api.h View 1 2 3 4 5 6 1 chunk +12 lines, -0 lines 0 comments Download
M runtime/include/dart_debugger_api.h View 1 2 3 4 5 6 1 chunk +19 lines, -11 lines 0 comments Download
M runtime/vm/dart_api_impl.cc View 1 2 3 4 5 6 1 chunk +11 lines, -0 lines 0 comments Download
M runtime/vm/debugger.h View 1 2 3 4 5 6 3 chunks +9 lines, -1 line 0 comments Download
M runtime/vm/debugger.cc View 1 2 3 4 5 6 5 chunks +40 lines, -2 lines 0 comments Download
M runtime/vm/debugger_api_impl.cc View 1 2 3 4 5 6 1 chunk +6 lines, -0 lines 0 comments Download
M runtime/vm/debugger_api_impl_test.cc View 1 2 3 4 5 6 1 chunk +1 line, -0 lines 0 comments Download
A runtime/vm/debugger_test.cc View 1 chunk +57 lines, -0 lines 0 comments Download
M runtime/vm/json_stream.h View 1 2 3 4 5 6 4 chunks +7 lines, -0 lines 0 comments Download
M runtime/vm/json_stream.cc View 1 2 3 4 5 6 3 chunks +17 lines, -0 lines 0 comments Download
M runtime/vm/service.cc View 1 2 3 4 5 6 6 chunks +60 lines, -15 lines 0 comments Download
A runtime/vm/service_test.cc View 1 2 3 4 5 1 chunk +149 lines, -0 lines 0 comments Download
M runtime/vm/vm_sources.gypi View 1 2 3 4 5 6 2 chunks +2 lines, -0 lines 0 comments Download
M tests/standalone/vmservice/isolate_bad_class_test.dart View 1 2 3 4 5 6 1 chunk +1 line, -1 line 0 comments Download
M tests/standalone/vmservice/isolate_bad_object_test.dart View 1 2 3 4 5 6 1 chunk +1 line, -1 line 0 comments Download

Messages

Total messages: 6 (0 generated)
turnidge
John - please review all Matthias - please review dbg_* and debugger*. thanks, Todd
7 years ago (2013-12-17 20:32:29 UTC) #1
hausner
debugger* LGTM with comments. https://codereview.chromium.org/113513004/diff/40001/runtime/vm/debugger.h File runtime/vm/debugger.h (right): https://codereview.chromium.org/113513004/diff/40001/runtime/vm/debugger.h#newcode47 runtime/vm/debugger.h:47: void PrintToJSONStream(JSONStream* stream) const; Should ...
7 years ago (2013-12-17 21:04:33 UTC) #2
turnidge
https://codereview.chromium.org/113513004/diff/40001/runtime/vm/debugger.h File runtime/vm/debugger.h (right): https://codereview.chromium.org/113513004/diff/40001/runtime/vm/debugger.h#newcode47 runtime/vm/debugger.h:47: void PrintToJSONStream(JSONStream* stream) const; On 2013/12/17 21:04:33, hausner wrote: ...
7 years ago (2013-12-17 21:50:00 UTC) #3
turnidge
Some changes in service_test.cc. Ivan forced me to become more clever in the unit test ...
7 years ago (2013-12-17 21:50:57 UTC) #4
Cutch
lgtm
7 years ago (2013-12-18 05:34:17 UTC) #5
turnidge
7 years ago (2013-12-18 17:45:30 UTC) #6
Message was sent while issue was closed.
Committed patchset #8 manually as r31233 (presubmit successful).

Powered by Google App Engine
This is Rietveld 408576698