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:
@@ -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);
|
||||
}
|
||||
|
||||
/**
|
||||
|
||||
Reference in New Issue
Block a user