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

Side by Side Diff: pkg/analysis_server/lib/src/socket_server.dart

Issue 402333006: Implementation of the 'edit.getFixes' API in server. (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: Created 6 years, 5 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 socket.server; 5 library socket.server;
6 6
7 import 'dart:io' as io; 7 import 'dart:io' as io;
8 8
9 import 'package:analysis_server/src/analysis_server.dart'; 9 import 'package:analysis_server/src/analysis_server.dart';
10 import 'package:analysis_server/src/channel.dart'; 10 import 'package:analysis_server/src/channel.dart';
11 import 'package:analysis_server/src/domain_analysis.dart'; 11 import 'package:analysis_server/src/domain_analysis.dart';
12 import 'package:analysis_server/src/domain_completion.dart'; 12 import 'package:analysis_server/src/domain_completion.dart';
13 import 'package:analysis_server/src/domain_edit.dart'; 13 import 'package:analysis_server/src/edit/edit_domain.dart';
14 import 'package:analysis_server/src/search/search_domain.dart'; 14 import 'package:analysis_server/src/search/search_domain.dart';
15 import 'package:analysis_server/src/domain_server.dart'; 15 import 'package:analysis_server/src/domain_server.dart';
16 import 'package:analysis_server/src/package_map_provider.dart'; 16 import 'package:analysis_server/src/package_map_provider.dart';
17 import 'package:analysis_server/src/protocol.dart'; 17 import 'package:analysis_server/src/protocol.dart';
18 import 'package:analyzer/file_system/physical_file_system.dart'; 18 import 'package:analyzer/file_system/physical_file_system.dart';
19 import 'package:analyzer/src/generated/sdk_io.dart'; 19 import 'package:analyzer/src/generated/sdk_io.dart';
20 import 'package:path/path.dart' as pathos; 20 import 'package:path/path.dart' as pathos;
21 import 'package:analysis_services/index/index.dart'; 21 import 'package:analysis_services/index/index.dart';
22 import 'package:analysis_services/index/local_file_index.dart'; 22 import 'package:analysis_services/index/local_file_index.dart';
23 23
(...skipping 64 matching lines...) Expand 10 before | Expand all | Expand 10 after
88 void _initializeHandlers(AnalysisServer server) { 88 void _initializeHandlers(AnalysisServer server) {
89 server.handlers = [ 89 server.handlers = [
90 new ServerDomainHandler(server), 90 new ServerDomainHandler(server),
91 new AnalysisDomainHandler(server), 91 new AnalysisDomainHandler(server),
92 new EditDomainHandler(server), 92 new EditDomainHandler(server),
93 new SearchDomainHandler(server), 93 new SearchDomainHandler(server),
94 new CompletionDomainHandler(server), 94 new CompletionDomainHandler(server),
95 ]; 95 ];
96 } 96 }
97 } 97 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698