Chromium Code Reviews| Index: runtime/vm/service.cc |
| diff --git a/runtime/vm/service.cc b/runtime/vm/service.cc |
| index c57890a6b0404b44a1e447cfeb2be8747eee10b6..3e98d2fb68afa2cd9a8af54379588442cd0689f3 100644 |
| --- a/runtime/vm/service.cc |
| +++ b/runtime/vm/service.cc |
| @@ -2011,7 +2011,6 @@ static bool PrintRetainingPath(Thread* thread, |
| for (intptr_t i = 0; i < limit; ++i) { |
| JSONObject jselement(&elements); |
| element = path.At(i * 2); |
| - jselement.AddProperty("index", i); |
|
Cutch
2016/08/11 13:23:21
Why stop sending this?
cbernaschina
2016/08/11 22:03:31
No other api in the service protocol adds this fie
|
| jselement.AddProperty("value", element); |
| // Interpret the word offset from parent as list index or instance field. |
| // TODO(koda): User-friendly interpretation for map entries. |