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

Unified Diff: tool/input_sdk/patch/convert_patch.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/utf.dart ('k') | tool/sdk_expected_errors.txt » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: tool/input_sdk/patch/convert_patch.dart
diff --git a/tool/input_sdk/patch/convert_patch.dart b/tool/input_sdk/patch/convert_patch.dart
index 1b987ed42363feac303c7f03ecec37f8d73ee0eb..54575b5700d8e8fd315b635dab59668e9d050565 100644
--- a/tool/input_sdk/patch/convert_patch.dart
+++ b/tool/input_sdk/patch/convert_patch.dart
@@ -397,8 +397,9 @@ class _JsonDecoderSink extends _StringSinkConversionSink {
@patch class Utf8Decoder {
@patch
- Converter<List<int>,dynamic> fuse(Converter<String, dynamic> next) {
- return super.fuse(next);
+ Converter<List<int>, dynamic/*=T*/> fuse/*<T>*/(
+ Converter<String, dynamic/*=T*/> next) {
+ return super.fuse/*<T>*/(next);
}
// Currently not intercepting UTF8 decoding.
« no previous file with comments | « tool/input_sdk/lib/convert/utf.dart ('k') | tool/sdk_expected_errors.txt » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698