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

Unified Diff: test/generated_sdk/lib/convert/converter.dart

Issue 1162723007: remove generated_sdk from checked in code (Closed) Base URL: git@github.com:dart-lang/dev_compiler.git@master
Patch Set: Created 5 years, 7 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 | « test/generated_sdk/lib/convert/convert.dart ('k') | test/generated_sdk/lib/convert/encoding.dart » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: test/generated_sdk/lib/convert/converter.dart
diff --git a/test/generated_sdk/lib/convert/converter.dart b/test/generated_sdk/lib/convert/converter.dart
deleted file mode 100644
index bce2aab472e403d1b7e634eb6ef67e31630191f8..0000000000000000000000000000000000000000
--- a/test/generated_sdk/lib/convert/converter.dart
+++ /dev/null
@@ -1,63 +0,0 @@
-// Copyright (c) 2013, the Dart project authors. Please see the AUTHORS file
-// for details. All rights reserved. Use of this source code is governed by a
-// BSD-style license that can be found in the LICENSE file.
-
-part of dart.convert;
-
-/**
- * A [Converter] converts data from one representation into another.
- *
- * It is recommended that implementations of `Converter` extend this class,
- * to inherit any further methods that may be added to the class.
- */
-abstract class Converter<S, T> implements StreamTransformer<S, T> {
- const Converter();
-
- /**
- * Converts [input] and returns the result of the conversion.
- */
- T convert(S input);
-
- /**
- * Fuses `this` with [other].
- *
- * Encoding with the resulting converter is equivalent to converting with
- * `this` before converting with `other`.
- */
- Converter<S, dynamic> fuse(Converter<T, dynamic> other) {
- return new _FusedConverter<S, T, dynamic>(this, other);
- }
-
- /**
- * Starts a chunked conversion.
- */
- ChunkedConversionSink startChunkedConversion(Sink<T> sink) {
- throw new UnsupportedError(
- "This converter does not support chunked conversions: $this");
- }
-
- // Subclasses are encouraged to provide better types.
- Stream<T> bind(Stream<S> source) {
- return new Stream.eventTransformed(
- source,
- (EventSink sink) => new _ConverterStreamEventSink(this, sink));
- }
-}
-
-/**
- * Fuses two converters.
- *
- * 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;
-
- _FusedConverter(this._first, this._second);
-
- T convert(S input) => _second.convert(_first.convert(input));
-
- ChunkedConversionSink startChunkedConversion(Sink<T> sink) {
- return _first.startChunkedConversion(_second.startChunkedConversion(sink));
- }
-}
« no previous file with comments | « test/generated_sdk/lib/convert/convert.dart ('k') | test/generated_sdk/lib/convert/encoding.dart » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698