Chromium Code Reviews| Index: runtime/vm/heap.cc |
| =================================================================== |
| --- runtime/vm/heap.cc (revision 35314) |
| +++ runtime/vm/heap.cc (working copy) |
| @@ -559,6 +559,9 @@ |
| stats_.data_[1], |
| stats_.data_[2], |
| stats_.data_[3]); |
| + JSONStream js; |
| + isolate->class_table()->AllocationProfilePrintToJSONStream(&js); |
| + OS::PrintErr("%s\n", js.ToCString()); |
|
Cutch
2014/04/23 19:36:00
remove debug code
|
| } |