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

Unified Diff: sdk/lib/convert/converter.dart

Issue 1847843002: Steps towards making the convert library strong-mode compliant. (Closed) Base URL: git@github.com:dart-lang/sdk.git@master
Patch Set: Relax type and fix missed converters. Created 4 years, 8 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/convert/chunked_conversion.dart ('k') | sdk/lib/convert/encoding.dart » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: sdk/lib/convert/converter.dart
diff --git a/sdk/lib/convert/converter.dart b/sdk/lib/convert/converter.dart
index 627e4173559a13175b8edbf7c7c2e0a2f02d635d..d6d9a9b78bf2f83d29925a8a7f13d9cbd826d8d5 100644
--- a/sdk/lib/convert/converter.dart
+++ b/sdk/lib/convert/converter.dart
@@ -29,14 +29,22 @@ abstract class Converter<S, T> implements StreamTransformer {
}
/**
- * Starts a chunked conversion.
+ * Deprecated.
+ *
+ * Use the [ChunkedConverter] interface instead.
*/
+ @deprecated
ChunkedConversionSink startChunkedConversion(Sink sink) {
throw new UnsupportedError(
"This converter does not support chunked conversions: $this");
}
- // Subclasses are encouraged to provide better types.
+ /**
+ * Deprecated.
+ *
+ * Use the [ChunkedConverter] interface instead.
+ */
+ @deprecated
Stream bind(Stream stream) {
return new Stream.eventTransformed(
stream,
@@ -50,14 +58,10 @@ abstract class Converter<S, T> implements StreamTransformer {
* For a non-chunked conversion converts the input in sequence.
*/
class _FusedConverter<S, M, T> extends Converter<S, T> {
- final Converter _first;
- final Converter _second;
+ final Converter<S, M> _first;
+ final Converter<M, T> _second;
_FusedConverter(this._first, this._second);
T convert(S input) => _second.convert(_first.convert(input));
-
- ChunkedConversionSink startChunkedConversion(Sink sink) {
- return _first.startChunkedConversion(_second.startChunkedConversion(sink));
- }
}
« no previous file with comments | « sdk/lib/convert/chunked_conversion.dart ('k') | sdk/lib/convert/encoding.dart » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698