OLD | NEW |
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 operation.analysis; | 5 library operation.analysis; |
6 | 6 |
7 import 'package:analysis_server/src/analysis_server.dart'; | 7 import 'package:analysis_server/src/analysis_server.dart'; |
8 import 'package:analysis_server/src/computer/computer_highlights.dart'; | 8 import 'package:analysis_server/src/computer/computer_highlights.dart'; |
9 import 'package:analysis_server/src/computer/computer_navigation.dart'; | 9 import 'package:analysis_server/src/computer/computer_navigation.dart'; |
10 import 'package:analysis_server/src/computer/computer_occurrences.dart'; | 10 import 'package:analysis_server/src/computer/computer_occurrences.dart'; |
11 import 'package:analysis_server/src/computer/computer_outline.dart'; | 11 import 'package:analysis_server/src/computer/computer_outline.dart'; |
12 import 'package:analysis_server/src/computer/computer_overrides.dart'; | 12 import 'package:analysis_server/src/computer/computer_overrides.dart'; |
13 import 'package:analysis_server/src/constants.dart'; | 13 import 'package:analysis_server/src/constants.dart'; |
14 import 'package:analysis_server/src/operation/operation.dart'; | 14 import 'package:analysis_server/src/operation/operation.dart'; |
15 import 'package:analysis_server/src/protocol.dart'; | 15 import 'package:analysis_server/src/protocol.dart'; |
16 import 'package:analysis_services/constants.dart'; | 16 import 'package:analysis_server/src/services/constants.dart'; |
17 import 'package:analysis_services/index/index.dart'; | 17 import 'package:analysis_server/src/services/index/index.dart'; |
18 import 'package:analyzer/src/generated/ast.dart'; | 18 import 'package:analyzer/src/generated/ast.dart'; |
19 import 'package:analyzer/src/generated/engine.dart'; | 19 import 'package:analyzer/src/generated/engine.dart'; |
20 import 'package:analyzer/src/generated/error.dart'; | 20 import 'package:analyzer/src/generated/error.dart'; |
21 import 'package:analyzer/src/generated/html.dart'; | 21 import 'package:analyzer/src/generated/html.dart'; |
22 import 'package:analyzer/src/generated/source.dart'; | 22 import 'package:analyzer/src/generated/source.dart'; |
23 import 'package:analysis_server/src/computer/error.dart' as server_prefix; | 23 import 'package:analysis_server/src/computer/error.dart' as server_prefix; |
24 | 24 |
25 | 25 |
26 void sendAnalysisNotificationErrors(AnalysisServer server, String file, | 26 void sendAnalysisNotificationErrors(AnalysisServer server, String file, |
27 LineInfo lineInfo, List<AnalysisError> errors) { | 27 LineInfo lineInfo, List<AnalysisError> errors) { |
(...skipping 155 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
183 // HTML | 183 // HTML |
184 { | 184 { |
185 HtmlUnit htmlUnit = notice.htmlUnit; | 185 HtmlUnit htmlUnit = notice.htmlUnit; |
186 if (htmlUnit != null) { | 186 if (htmlUnit != null) { |
187 index.indexHtmlUnit(context, htmlUnit); | 187 index.indexHtmlUnit(context, htmlUnit); |
188 } | 188 } |
189 } | 189 } |
190 } | 190 } |
191 } | 191 } |
192 } | 192 } |
OLD | NEW |