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

Unified Diff: pkg/analysis_server/benchmark/integration/input_converter.dart

Issue 1847843002: Steps towards making the convert library strong-mode compliant. (Closed) Base URL: git@github.com:dart-lang/sdk.git@master
Patch Set: Relax type and fix missed converters. Created 4 years, 8 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 | « CHANGELOG.md ('k') | pkg/analysis_server/lib/src/channel/channel.dart » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: pkg/analysis_server/benchmark/integration/input_converter.dart
diff --git a/pkg/analysis_server/benchmark/integration/input_converter.dart b/pkg/analysis_server/benchmark/integration/input_converter.dart
index f61984515be36e7a4f2239e5e466bd9be82b584c..d743d6cc1fd09748b045b1709ce1d97aedae79d5 100644
--- a/pkg/analysis_server/benchmark/integration/input_converter.dart
+++ b/pkg/analysis_server/benchmark/integration/input_converter.dart
@@ -271,7 +271,9 @@ abstract class CommonInputConverter extends Converter<String, Operation> {
* into a series of operations to be sent to the analysis server.
* The input stream can be either an instrumenation or log file.
*/
-class InputConverter extends Converter<String, Operation> {
+class InputConverter
+ extends ChunkedConverter<String, Operation, String, Operation> {
+
final Logger logger = new Logger('InputConverter');
/**
« no previous file with comments | « CHANGELOG.md ('k') | pkg/analysis_server/lib/src/channel/channel.dart » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698