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

Unified Diff: runtime/observatory/lib/src/service/object.dart

Issue 1241673003: Async-step, first cut. (Closed) Base URL: git@github.com:dart-lang/sdk.git@master
Patch Set: Created 5 years, 5 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
Index: runtime/observatory/lib/src/service/object.dart
diff --git a/runtime/observatory/lib/src/service/object.dart b/runtime/observatory/lib/src/service/object.dart
index c17db626d72d35f26b2ac664c6aa88403b6b487a..fa73cf6266a6b429e6185147b7eab837fa8af9ef 100644
--- a/runtime/observatory/lib/src/service/object.dart
+++ b/runtime/observatory/lib/src/service/object.dart
@@ -1622,6 +1622,7 @@ class ServiceEvent extends ServiceObject {
@observable Breakpoint breakpoint;
@observable Frame topFrame;
@observable Instance exception;
+ @observable Instance asyncContinuation;
@observable ServiceObject inspectee;
@observable ByteData data;
@observable int count;
@@ -1661,6 +1662,9 @@ class ServiceEvent extends ServiceObject {
if (map['exception'] != null) {
exception = map['exception'];
}
+ if (map['_asyncContinuation'] != null) {
+ asyncContinuation = map['_asyncContinuation'];
+ }
if (map['inspectee'] != null) {
inspectee = map['inspectee'];
}
« no previous file with comments | « runtime/observatory/lib/src/elements/debugger.dart ('k') | runtime/observatory/tests/service/async_continuation_test.dart » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698