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

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

Issue 1554683002: Update to latest analyzer (Closed) Base URL: git@github.com:dart-lang/dev_compiler.git@master
Patch Set: Created 4 years, 11 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/collection/set.dart ('k') | tool/input_sdk/lib/core/iterable.dart » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: tool/input_sdk/lib/convert/chunked_conversion.dart
diff --git a/tool/input_sdk/lib/convert/chunked_conversion.dart b/tool/input_sdk/lib/convert/chunked_conversion.dart
index c9a874c56905f090b16d6aff070844544a6eaf5a..c933820d030e23fd5acf903727f6e13998122134 100644
--- a/tool/input_sdk/lib/convert/chunked_conversion.dart
+++ b/tool/input_sdk/lib/convert/chunked_conversion.dart
@@ -20,7 +20,7 @@ typedef void _ChunkedConversionCallback<T>(T accumulated);
abstract class ChunkedConversionSink<T> implements Sink<T> {
ChunkedConversionSink();
factory ChunkedConversionSink.withCallback(
- void callback(List<T> accumulated)) = _SimpleCallbackSink;
+ void callback(List<T> accumulated)) = _SimpleCallbackSink<T>;
/**
* Adds chunked data to this sink.
« no previous file with comments | « tool/input_sdk/lib/collection/set.dart ('k') | tool/input_sdk/lib/core/iterable.dart » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698