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

Unified Diff: tool/input_sdk/lib/convert/codec.dart

Issue 1978963002: Upgrade to the latest dart:convert. (Closed) Base URL: https://github.com/dart-lang/dev_compiler.git@master
Patch Set: Created 4 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 | « tool/input_sdk/lib/convert/chunked_conversion.dart ('k') | tool/input_sdk/lib/convert/converter.dart » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: tool/input_sdk/lib/convert/codec.dart
diff --git a/tool/input_sdk/lib/convert/codec.dart b/tool/input_sdk/lib/convert/codec.dart
index 1afe63a7105c3c8965525256fd5117a3647412b4..3fc2d31256c8d5afc075377814125cdb070a1557 100644
--- a/tool/input_sdk/lib/convert/codec.dart
+++ b/tool/input_sdk/lib/convert/codec.dart
@@ -84,8 +84,8 @@ class _FusedCodec<S, M, T> extends Codec<S, T> {
final Codec<S, M> _first;
final Codec<M, T> _second;
- Converter<S, T> get encoder => _first.encoder.fuse(_second.encoder);
- Converter<T, S> get decoder => _second.decoder.fuse(_first.decoder);
+ Converter<S, T> get encoder => _first.encoder.fuse/*<T>*/(_second.encoder);
+ Converter<T, S> get decoder => _second.decoder.fuse/*<S>*/(_first.decoder);
_FusedCodec(this._first, this._second);
}
« no previous file with comments | « tool/input_sdk/lib/convert/chunked_conversion.dart ('k') | tool/input_sdk/lib/convert/converter.dart » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698