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

Unified Diff: runtime/vm/isolate.cc

Issue 2005983002: Make the object store visible in Observatory. (Closed) Base URL: git@github.com:dart-lang/sdk.git@master
Patch Set: Created 4 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
Index: runtime/vm/isolate.cc
diff --git a/runtime/vm/isolate.cc b/runtime/vm/isolate.cc
index 11f5536f6bf76b99f18a0955f57d382b2082b129..8bdc5d2f2c5e9a8f87331fcaa8faa5c34223a680 100644
--- a/runtime/vm/isolate.cc
+++ b/runtime/vm/isolate.cc
@@ -1907,6 +1907,11 @@ void Isolate::PrintJSON(JSONStream* stream, bool ref) {
}
{
+ JSONObject objectStore(&jsobj, "_objectStore");
+ object_store()->PrintToJSONObject(&objectStore);
+ }
+
+ {
JSONObject tagCounters(&jsobj, "_tagCounters");
vm_tag_counters()->PrintToJSONObject(&tagCounters);
}

Powered by Google App Engine
This is Rietveld 408576698