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

Unified Diff: tests/lib/async/catch_errors17_test.dart

Issue 25354003: Redo StreamTransformers so they work with Stack traces. (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: Address comments. 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 | « tests/lib/async/catch_errors16_test.dart ('k') | tests/lib/async/catch_errors23_test.dart » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: tests/lib/async/catch_errors17_test.dart
diff --git a/tests/lib/async/catch_errors17_test.dart b/tests/lib/async/catch_errors17_test.dart
index 4a1591f59d559790f91f5a8075d3ee9aa57656c2..b57173240df4328a7dd95092589a889b118c0849 100644
--- a/tests/lib/async/catch_errors17_test.dart
+++ b/tests/lib/async/catch_errors17_test.dart
@@ -22,8 +22,8 @@ main() {
events.add("map $x");
return x + 100;
})
- .transform(new StreamTransformer(
- handleError: (e, sink) => sink.add("error $e")))
+ .transform(new StreamTransformer.fromHandlers(
+ handleError: (e, st, sink) { sink.add("error $e"); }))
.listen((x) { events.add("stream $x"); });
}).listen((x) { events.add(x); });
controller.add(1);
« no previous file with comments | « tests/lib/async/catch_errors16_test.dart ('k') | tests/lib/async/catch_errors23_test.dart » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698