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

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

Issue 18749002: Use typedefs in lib. (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: Updated cf. comment Created 7 years, 5 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 | « sdk/lib/async/stream.dart ('k') | sdk/lib/async/stream_pipe.dart » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: sdk/lib/async/stream_impl.dart
diff --git a/sdk/lib/async/stream_impl.dart b/sdk/lib/async/stream_impl.dart
index 43e3f6508089e8598b753af5763567ed2a4ffe25..c8fbe70f29ef6e07131376f3f14b6e55e244c147 100644
--- a/sdk/lib/async/stream_impl.dart
+++ b/sdk/lib/async/stream_impl.dart
@@ -77,9 +77,7 @@ class _BufferingStreamSubscription<T> implements StreamSubscription<T>,
static const int _STATE_PAUSE_COUNT_SHIFT = 6;
/* Event handlers provided in constructor. */
- /* TODO(7733): Fix Function->_DataHandler<T> when dart2js understands
- * parameterized function types. */
- Function _onData;
+ _DataHandler<T> _onData;
_ErrorHandler _onError;
_DoneHandler _onDone;
final _Zone _zone = _Zone.current;
« no previous file with comments | « sdk/lib/async/stream.dart ('k') | sdk/lib/async/stream_pipe.dart » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698