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

Side by Side Diff: pkg/analysis_server/benchmark/integration/input_converter.dart

Issue 2879273002: Make server use the common protocol classes (Closed)
Patch Set: Created 3 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 unified diff | Download patch
« no previous file with comments | « no previous file | pkg/analysis_server/benchmark/perf/benchmark_flutter.dart » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 // Copyright (c) 2015, the Dart project authors. Please see the AUTHORS file 1 // Copyright (c) 2015, the Dart project authors. Please see the AUTHORS file
2 // for details. All rights reserved. Use of this source code is governed by a 2 // for details. All rights reserved. Use of this source code is governed by a
3 // BSD-style license that can be found in the LICENSE file. 3 // BSD-style license that can be found in the LICENSE file.
4 4
5 library input.transformer; 5 library input.transformer;
6 6
7 import 'dart:async'; 7 import 'dart:async';
8 import 'dart:convert'; 8 import 'dart:convert';
9 import 'dart:io'; 9 import 'dart:io';
10 10
11 import 'package:analysis_server/protocol/protocol.dart'; 11 import 'package:analysis_server/protocol/protocol.dart';
12 import 'package:analysis_server/protocol/protocol_generated.dart'; 12 import 'package:analysis_server/protocol/protocol_generated.dart';
13 import 'package:analysis_server/src/constants.dart'; 13 import 'package:analysis_server/src/constants.dart';
14 import 'package:analyzer_plugin/protocol/protocol_common.dart';
14 import 'package:logging/logging.dart'; 15 import 'package:logging/logging.dart';
15 import 'package:path/path.dart' as path; 16 import 'package:path/path.dart' as path;
16 17
17 import 'instrumentation_input_converter.dart'; 18 import 'instrumentation_input_converter.dart';
18 import 'log_file_input_converter.dart'; 19 import 'log_file_input_converter.dart';
19 import 'operation.dart'; 20 import 'operation.dart';
20 21
21 /** 22 /**
22 * Common input converter superclass for sharing implementation. 23 * Common input converter superclass for sharing implementation.
23 */ 24 */
(...skipping 367 matching lines...) Expand 10 before | Expand all | Expand 10 after
391 if (op != null) { 392 if (op != null) {
392 outSink.add(op); 393 outSink.add(op);
393 } 394 }
394 } 395 }
395 396
396 @override 397 @override
397 void close() { 398 void close() {
398 outSink.close(); 399 outSink.close();
399 } 400 }
400 } 401 }
OLDNEW
« no previous file with comments | « no previous file | pkg/analysis_server/benchmark/perf/benchmark_flutter.dart » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698