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

Unified Diff: sdk/lib/_internal/js_runtime/lib/convert_patch.dart

Issue 2529393002: Make core libraries use generic method syntax. (Closed)
Patch Set: Update status files. Created 3 years, 12 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 | « runtime/vm/method_recognizer.h ('k') | sdk/lib/async/async_error.dart » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: sdk/lib/_internal/js_runtime/lib/convert_patch.dart
diff --git a/sdk/lib/_internal/js_runtime/lib/convert_patch.dart b/sdk/lib/_internal/js_runtime/lib/convert_patch.dart
index 9cac10e030618f131657f35e1851947e78c5437b..65395a8acd9ee04fce36e60204900d756153c98e 100644
--- a/sdk/lib/_internal/js_runtime/lib/convert_patch.dart
+++ b/sdk/lib/_internal/js_runtime/lib/convert_patch.dart
@@ -397,7 +397,7 @@ class _JsonDecoderSink extends _StringSinkConversionSink {
@patch class Utf8Decoder {
@patch
- Converter<List<int>,dynamic> fuse(Converter<String, dynamic> next) {
+ Converter<List<int>, T> fuse<T>(Converter<String, T> next) {
return super.fuse(next);
}
« no previous file with comments | « runtime/vm/method_recognizer.h ('k') | sdk/lib/async/async_error.dart » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698