| Index: dart/runtime/bin/vmservice/running_isolates.dart
|
| ===================================================================
|
| --- dart/runtime/bin/vmservice/running_isolates.dart (revision 31530)
|
| +++ dart/runtime/bin/vmservice/running_isolates.dart (working copy)
|
| @@ -29,8 +29,9 @@
|
| var result = {};
|
| isolates.forEach((portId, runningIsolate) {
|
| members.add({
|
| - 'id': portId,
|
| - 'name': runningIsolate.name
|
| + 'type': 'Isolate',
|
| + 'id': 'isolates/$portId',
|
| + 'name': runningIsolate.name,
|
| });
|
| });
|
| result['type'] = 'IsolateList';
|
|
|