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

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

Issue 13530003: Deprecate Collection class. (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: Update status file. Created 7 years, 9 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/collection_sink.dart
diff --git a/sdk/lib/async/collection_sink.dart b/sdk/lib/async/collection_sink.dart
index ad3dda5b7dedd4ee9e95b808459ee748b92ea1d7..4ecb831529173a4e1429689aaa3617763bac3b15 100644
--- a/sdk/lib/async/collection_sink.dart
+++ b/sdk/lib/async/collection_sink.dart
@@ -7,7 +7,11 @@ part of dart.async;
typedef void _CollectionSinkCallback<T>(Collection<T> collection);
typedef void _CollectionSinkErrorCallback(AsyncError error);
-/** EventSink that stores incoming data in a collection. */
+/**
+ * EventSink that stores incoming data in a collection.
+ *
+ * *Deprecated*.
+ */
class CollectionSink<T> extends StreamSink<T> {
// TODO(8997): Implement EventSink instead.
final Collection<T> collection;
« no previous file with comments | « compiler/javatests/com/google/dart/compiler/type/TypeAnalyzerCompilerTest.java ('k') | sdk/lib/core/collection.dart » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698