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

Side by Side Diff: pkg/analysis_server/lib/src/server/driver.dart

Issue 868803006: cleanup unused imports (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: Created 5 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 unified diff | Download patch | Annotate | Revision Log
OLDNEW
1 // Copyright (c) 2014, the Dart project authors. Please see the AUTHORS file 1 // Copyright (c) 2014, 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 driver; 5 library driver;
6 6
7 import 'dart:async'; 7 import 'dart:async';
8 import 'dart:io'; 8 import 'dart:io';
9 import 'dart:math'; 9 import 'dart:math';
10 10
11 import 'package:analysis_server/plugin/plugin.dart'; 11 import 'package:analysis_server/plugin/plugin.dart';
12 import 'package:analysis_server/src/analysis_server.dart'; 12 import 'package:analysis_server/src/analysis_server.dart';
13 import 'package:analysis_server/src/constants.dart';
14 import 'package:analysis_server/src/plugin/plugin_impl.dart'; 13 import 'package:analysis_server/src/plugin/plugin_impl.dart';
15 import 'package:analysis_server/src/plugin/server_plugin.dart'; 14 import 'package:analysis_server/src/plugin/server_plugin.dart';
16 import 'package:analysis_server/src/server/http_server.dart'; 15 import 'package:analysis_server/src/server/http_server.dart';
17 import 'package:analysis_server/src/server/stdio_server.dart'; 16 import 'package:analysis_server/src/server/stdio_server.dart';
18 import 'package:analysis_server/src/socket_server.dart'; 17 import 'package:analysis_server/src/socket_server.dart';
19 import 'package:analysis_server/starter.dart'; 18 import 'package:analysis_server/starter.dart';
20 import 'package:analyzer/file_system/physical_file_system.dart'; 19 import 'package:analyzer/file_system/physical_file_system.dart';
21 import 'package:analyzer/instrumentation/instrumentation.dart'; 20 import 'package:analyzer/instrumentation/instrumentation.dart';
22 import 'package:analyzer/src/generated/engine.dart'; 21 import 'package:analyzer/src/generated/engine.dart';
23 import 'package:analyzer/src/generated/incremental_logger.dart'; 22 import 'package:analyzer/src/generated/incremental_logger.dart';
(...skipping 359 matching lines...) Expand 10 before | Expand all | Expand 10 after
383 uuidFile.parent.createSync(recursive: true); 382 uuidFile.parent.createSync(recursive: true);
384 uuidFile.writeAsStringSync(uuid); 383 uuidFile.writeAsStringSync(uuid);
385 } catch (exception, stackTrace) { 384 } catch (exception, stackTrace) {
386 service.logPriorityException(exception, stackTrace); 385 service.logPriorityException(exception, stackTrace);
387 // Slightly alter the uuid to indicate it was not persisted 386 // Slightly alter the uuid to indicate it was not persisted
388 uuid = 'temp-$uuid'; 387 uuid = 'temp-$uuid';
389 } 388 }
390 return uuid; 389 return uuid;
391 } 390 }
392 } 391 }
OLDNEW
« no previous file with comments | « pkg/analysis_server/lib/src/channel/channel.dart ('k') | pkg/analyzer/test/generated/static_warning_code_test.dart » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698