| Index: runtime/vm/isolate.cc
|
| diff --git a/runtime/vm/isolate.cc b/runtime/vm/isolate.cc
|
| index 43674d23ab11ab627f81e93751bafee7681ad6be..d10bef9a2fd899fb83c032212b6206827cc3a69c 100644
|
| --- a/runtime/vm/isolate.cc
|
| +++ b/runtime/vm/isolate.cc
|
| @@ -926,7 +926,10 @@ void Isolate::PrintToJSONStream(JSONStream* stream, bool ref) {
|
| jsobj.AddProperty("rootLib", lib);
|
|
|
| timer_list().PrintTimersToJSONProperty(&jsobj);
|
| -
|
| + {
|
| + JSONObject tagCounters(&jsobj, "tagCounters");
|
| + vm_tag_counters()->PrintToJSONObject(&tagCounters);
|
| + }
|
| if (object_store()->sticky_error() != Object::null()) {
|
| Error& error = Error::Handle(this, object_store()->sticky_error());
|
| ASSERT(!error.IsNull());
|
|
|