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

Unified Diff: tests/lib/convert/chunked_conversion1_test.dart

Issue 2529393002: Make core libraries use generic method syntax. (Closed)
Patch Set: Merge to head Created 4 years 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
« sdk/lib/internal/sort.dart ('K') | « sdk/lib/math/rectangle.dart ('k') | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: tests/lib/convert/chunked_conversion1_test.dart
diff --git a/tests/lib/convert/chunked_conversion1_test.dart b/tests/lib/convert/chunked_conversion1_test.dart
index 0bbe44b7f700e48d42426c1c1ee62fe7cbf08b85..ff386e1eaebcd68f376eeb381554db9214f8c7c4 100644
--- a/tests/lib/convert/chunked_conversion1_test.dart
+++ b/tests/lib/convert/chunked_conversion1_test.dart
@@ -9,7 +9,7 @@ import 'package:expect/expect.dart';
// This test implements a new special interface that can be used to
// send data more efficiently between two converters.
-abstract class MyChunkedIntSink extends ChunkedConversionSink<int> {
+abstract class MyChunkedIntSink extends ChunkedConversionSink<List<int>> {
MyChunkedIntSink();
factory MyChunkedIntSink.from(sink) = IntAdapterSink;
factory MyChunkedIntSink.withCallback(callback) {
« sdk/lib/internal/sort.dart ('K') | « sdk/lib/math/rectangle.dart ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698