Apply codec change from fb968553 to DDC copy

Closes https://github.com/dart-lang/sdk/pull/27724

R=jmesserly@google.com

Review URL: https://codereview.chromium.org/2481703003 .
This commit is contained in:
Kevin Moore
2016-11-07 10:59:22 -08:00
parent 8daf4cfb73
commit 4179bd7601
@@ -62,8 +62,8 @@ abstract class Codec<S, T> {
*/
// TODO(floitsch): use better example with line-splitter once that one is
// in this library.
Codec<S, dynamic> fuse(Codec<T, dynamic> other) {
return new _FusedCodec<S, T, dynamic>(this, other);
Codec<S, dynamic/*=R*/> fuse/*<R>*/(Codec<T, dynamic/*=R*/> other) {
return new _FusedCodec<S, T, dynamic/*=R*/>(this, other);
}
/**