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

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

Issue 1465673002: Document the Inspect event in the service protocol. (Closed) Base URL: git@github.com:dart-lang/sdk.git@master
Patch Set: Created 5 years, 1 month 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 | « no previous file | no next file » | 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 d824d4dddbdec56724f9f1c43acd48b7b9e55407..e71169d8334b1d9582eb1df76d12c68349a63bbc 100644
--- a/runtime/vm/service/service.md
+++ b/runtime/vm/service/service.md
@@ -1134,6 +1134,11 @@ class Event extends Response {
//
// This is provided for the WriteEvent event.
string bytes [optional];
+
+ // The argument passed to dart:developer.inspect.
+ //
+ // This is provided for the Inspect event.
+ @Instance inspectee [optional];
}
```
@@ -1196,7 +1201,10 @@ enum EventKind {
GC,
// Notification of bytes written, for example, to stdout/stderr.
- WriteEvent
+ WriteEvent,
+
+ // Notification from dart:developer.inspect.
+ Inspect
}
```
« no previous file with comments | « no previous file | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698