| Index: runtime/lib/isolate_patch.dart
|
| diff --git a/runtime/lib/isolate_patch.dart b/runtime/lib/isolate_patch.dart
|
| index 2a0876342f5b13c697edd187ff460e2957240e63..6022b076481064e7a995dfd70bb7c6807ca69a99 100644
|
| --- a/runtime/lib/isolate_patch.dart
|
| +++ b/runtime/lib/isolate_patch.dart
|
| @@ -216,7 +216,7 @@ patch class Isolate {
|
| completer.complete(new Isolate._fromControlPort(controlPort));
|
| };
|
| } catch(e, st) {
|
| - // TODO(floitsch): we want errors to go into the returned future.
|
| + // TODO(14718): we want errors to go into the returned future.
|
| rethrow;
|
| };
|
| return completer.future;
|
| @@ -236,7 +236,7 @@ patch class Isolate {
|
| completer.complete(new Isolate._fromControlPort(controlPort));
|
| };
|
| } catch(e, st) {
|
| - // TODO(floitsch): we want errors to go into the returned future.
|
| + // TODO(14718): we want errors to go into the returned future.
|
| rethrow;
|
| };
|
| return completer.future;
|
|
|