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

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

Issue 1150103005: Provide a logical view of VM-internal maps in Observatory. (Closed) Base URL: git@github.com:dart-lang/sdk.git@master
Patch Set: Created 5 years, 7 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/object_test.cc ('k') | 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 005a771a6052bfaa196ec8320ad1a6ee59384f4c..4fb44ce1ffeab92f3dbdbba839cc5d7ab1448c4c 100644
--- a/runtime/vm/service/service.md
+++ b/runtime/vm/service/service.md
@@ -1267,6 +1267,12 @@ class Instance extends Object {
// List
ListElement[] elements [optional];
+ // The elements of a List instance.
+ //
+ // Provided for instance kinds:
+ // Map
+ MapAssociation[] associations [optional];
+
// The function associated with a Closure instance.
//
// Provided for instance kinds:
@@ -1531,6 +1537,15 @@ class ListElement {
}
```
+### MapAssociation
+
+```
+class MapAssociation {
+ @Instance|Sentinel key;
+ @Instance|Sentinel value;
+}
+```
+
### Message
```
« no previous file with comments | « runtime/vm/object_test.cc ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698