| Index: runtime/lib/isolate_patch.dart
|
| diff --git a/runtime/lib/isolate_patch.dart b/runtime/lib/isolate_patch.dart
|
| index 87a8024f0ec89c4f379cdb4b0631e82dca536472..0b846e15126b830d3ad3ad284f0ef5caaf5c7575 100644
|
| --- a/runtime/lib/isolate_patch.dart
|
| +++ b/runtime/lib/isolate_patch.dart
|
| @@ -238,7 +238,7 @@ patch class Isolate {
|
| readyPort.handler = (readyMessage) {
|
| assert(readyMessage == 'started');
|
| readyPort.close();
|
| - completer.complete(new Isolate._fromControlPort(controlPort));
|
| + completer.complete(new Isolate(controlPort));
|
| };
|
| return completer.future;
|
| } catch (e, st) {
|
| @@ -258,7 +258,7 @@ patch class Isolate {
|
| readyPort.handler = (readyMessage) {
|
| assert(readyMessage == 'started');
|
| readyPort.close();
|
| - completer.complete(new Isolate._fromControlPort(controlPort));
|
| + completer.complete(new Isolate(controlPort));
|
| };
|
| return completer.future;
|
| } catch (e, st) {
|
|
|