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

Unified Diff: pkg/barback/lib/src/utils.dart

Issue 25094002: Adapt streams for additional stackTrace argument. (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: Remove types in closures. Created 7 years, 2 months 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 | « pkg/barback/lib/src/stream_replayer.dart ('k') | pkg/http/lib/src/utils.dart » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: pkg/barback/lib/src/utils.dart
diff --git a/pkg/barback/lib/src/utils.dart b/pkg/barback/lib/src/utils.dart
index 95f498e037a634f3c0aac681663b242b57be6882..96bd5542d7cf8f7eac3121311ad6100fba2deb3f 100644
--- a/pkg/barback/lib/src/utils.dart
+++ b/pkg/barback/lib/src/utils.dart
@@ -137,14 +137,13 @@ Stream mergeStreams(Iterable<Stream> streams, {bool broadcast: false}) {
: new StreamController(sync: true);
for (var stream in streams) {
- stream.listen((value) {
- controller.add(value);
- }, onError: (error) {
- controller.addError(error);
- }, onDone: () {
- doneCount++;
- if (doneCount == streams.length) controller.close();
- });
+ stream.listen(
+ controller.add,
+ onError: controller.addError,
+ onDone: () {
+ doneCount++;
+ if (doneCount == streams.length) controller.close();
+ });
}
return controller.stream;
@@ -188,10 +187,10 @@ Stream futureStream(Future<Stream> future) {
future.then((stream) {
stream.listen(
controller.add,
- onError: (error) => controller.addError(error),
+ onError: controller.addError,
onDone: controller.close);
- }).catchError((e) {
- controller.addError(e);
+ }).catchError((e, stackTrace) {
+ controller.addError(e, stackTrace);
controller.close();
});
return controller.stream;
« no previous file with comments | « pkg/barback/lib/src/stream_replayer.dart ('k') | pkg/http/lib/src/utils.dart » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698