| Index: runtime/bin/vmservice/running_isolate.dart
|
| diff --git a/runtime/bin/vmservice/running_isolate.dart b/runtime/bin/vmservice/running_isolate.dart
|
| index 13b358a1becc614515bd205c21179a4eb951fde3..cf726c8524caa756cfc7c4fcb4be892e0805eb6d 100644
|
| --- a/runtime/bin/vmservice/running_isolate.dart
|
| +++ b/runtime/bin/vmservice/running_isolate.dart
|
| @@ -5,10 +5,11 @@
|
| part of vmservice;
|
|
|
| class RunningIsolate implements ServiceRequestRouter {
|
| + final int portId;
|
| final SendPort sendPort;
|
| final String name;
|
|
|
| - RunningIsolate(this.sendPort, this.name);
|
| + RunningIsolate(this.portId, this.sendPort, this.name);
|
|
|
| Future sendMessage(List request) {
|
| final completer = new Completer.sync();
|
|
|