| Index: runtime/vm/service.cc
|
| diff --git a/runtime/vm/service.cc b/runtime/vm/service.cc
|
| index 3726d2d4b0073f81783da54460461c594b74b734..a9e195704e66462b56188890906b007a7c23498c 100644
|
| --- a/runtime/vm/service.cc
|
| +++ b/runtime/vm/service.cc
|
| @@ -1092,7 +1092,10 @@ static bool HandleCode(Isolate* isolate, JSONStream* js) {
|
|
|
|
|
| static bool HandleProfile(Isolate* isolate, JSONStream* js) {
|
| - Profiler::PrintToJSONStream(isolate, js, true);
|
| + // A full profile includes disassembly of all Dart code objects.
|
| + // TODO(johnmccutchan): Add sub command to trigger full code dump.
|
| + bool full_profile = false;
|
| + Profiler::PrintToJSONStream(isolate, js, full_profile);
|
| return true;
|
| }
|
|
|
|
|