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

Unified Diff: sdk/lib/async/stream_impl.dart

Issue 48483002: Remove deprecated parts of dart:async. (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: 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
Index: sdk/lib/async/stream_impl.dart
diff --git a/sdk/lib/async/stream_impl.dart b/sdk/lib/async/stream_impl.dart
index bf7c8f015c9a51ddf3ba7a3f3a4775fb85237adc..5dc48a6bf6622065110a7e63c1b252a66b1de80b 100644
--- a/sdk/lib/async/stream_impl.dart
+++ b/sdk/lib/async/stream_impl.dart
@@ -529,7 +529,7 @@ class _IterablePendingEvents<T> extends _PendingEvents {
isDone = !_iterator.moveNext();
} catch (e, s) {
_iterator = null;
- dispatch._sendError(_asyncError(e, s), s);
+ dispatch._sendError(e, s);
return;
}
if (!isDone) {

Powered by Google App Engine
This is Rietveld 408576698