Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(373)

Unified Diff: runtime/lib/isolate_patch.dart

Issue 88783002: Isolate.spawn{Uri} only reports errors asynchronously. (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: Rebase Created 7 years ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
« no previous file with comments | « no previous file | runtime/lib/print_patch.dart » ('j') | runtime/lib/print_patch.dart » ('J')
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: runtime/lib/isolate_patch.dart
diff --git a/runtime/lib/isolate_patch.dart b/runtime/lib/isolate_patch.dart
index 3792a5b4d2ddbdee1d72446d80c67cae5cd82062..7757cfa79dba30f1810f9574153bc876db0e1b21 100644
--- a/runtime/lib/isolate_patch.dart
+++ b/runtime/lib/isolate_patch.dart
@@ -241,8 +241,11 @@ patch class Isolate {
completer.complete(new Isolate._fromControlPort(controlPort));
};
} catch(e, st) {
- // TODO(14718): we want errors to go into the returned future.
- rethrow;
+ // Don't complete immediately with an error, since the caller didn't
+ // yet have the time to install an error handler.
Ivan Posva 2013/12/12 12:11:49 time -> opportunity
floitsch 2013/12/12 21:08:37 Done.
+ scheduleMicrotask(() {
+ completer.completeError(e, st);
+ });
};
return completer.future;
}
@@ -261,8 +264,11 @@ patch class Isolate {
completer.complete(new Isolate._fromControlPort(controlPort));
};
} catch(e, st) {
- // TODO(14718): we want errors to go into the returned future.
- rethrow;
+ // Don't complete immediately with an error, since the caller didn't
+ // yet have the time to install an error handler.
Ivan Posva 2013/12/12 12:11:49 ditto
floitsch 2013/12/12 21:08:37 Done.
+ scheduleMicrotask(() {
+ completer.completeError(e, st);
+ });
};
return completer.future;
}
« no previous file with comments | « no previous file | runtime/lib/print_patch.dart » ('j') | runtime/lib/print_patch.dart » ('J')

Powered by Google App Engine
This is Rietveld 408576698