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

Unified Diff: runtime/vm/service/service.md

Issue 2603383004: Sane asynchronous debugging and stack traces (Closed)
Patch Set: rebase Created 3 years, 11 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
« no previous file with comments | « runtime/vm/service.cc ('k') | runtime/vm/stack_trace.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: runtime/vm/service/service.md
diff --git a/runtime/vm/service/service.md b/runtime/vm/service/service.md
index 1c9bb72a4bc2975ac38b2db60b1274940234481e..af036e810717c535b959dc05c3c4011054648fcc 100644
--- a/runtime/vm/service/service.md
+++ b/runtime/vm/service/service.md
@@ -1486,6 +1486,26 @@ A _FlagList_ represents the complete set of VM command line flags.
### Frame
```
+enum AsyncFrameKind {
+ LiveFrame,
+ MarkerFrame,
+ HistoricalFrame,
+}
+```
+
+```
+class AsyncFrame extends Response {
+ AsyncFrameKind kind;
+ int index;
+ @Function function [optional];
+ @Code code [optional];
+ SourceLocation location [optional];
+ BoundVariable[] vars [optional];
+ String marker [optional];
+}
+```
+
+```
class Frame extends Response {
int index;
@Function function;
@@ -2417,6 +2437,7 @@ and therefore will not contain a _type_ property.
```
class Stack extends Response {
Frame[] frames;
+ AsyncFrame[] asyncFrames [optional];
Message[] messages;
}
```
« no previous file with comments | « runtime/vm/service.cc ('k') | runtime/vm/stack_trace.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698