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 test.plugin.analysis_contributor; | |
6 | |
7 import 'dart:async'; | 5 import 'dart:async'; |
8 | 6 |
9 import 'package:analysis_server/plugin/analysis/analysis_domain.dart'; | 7 import 'package:analysis_server/plugin/analysis/analysis_domain.dart'; |
10 import 'package:analysis_server/plugin/analysis/navigation/navigation.dart'; | 8 import 'package:analysis_server/plugin/analysis/navigation/navigation.dart'; |
11 import 'package:analysis_server/plugin/analysis/navigation/navigation_core.dart'
; | 9 import 'package:analysis_server/plugin/analysis/navigation/navigation_core.dart'
; |
12 import 'package:analysis_server/plugin/analysis/occurrences/occurrences.dart'; | 10 import 'package:analysis_server/plugin/analysis/occurrences/occurrences.dart'; |
13 import 'package:analysis_server/plugin/analysis/occurrences/occurrences_core.dar
t'; | 11 import 'package:analysis_server/plugin/analysis/occurrences/occurrences_core.dar
t'; |
14 import 'package:analysis_server/plugin/protocol/protocol.dart'; | 12 import 'package:analysis_server/protocol/protocol.dart'; |
| 13 import 'package:analysis_server/protocol/protocol_generated.dart'; |
15 import 'package:analysis_server/src/constants.dart'; | 14 import 'package:analysis_server/src/constants.dart'; |
16 import 'package:analyzer/src/generated/engine.dart'; | 15 import 'package:analyzer/src/generated/engine.dart'; |
17 import 'package:analyzer/src/generated/source.dart'; | 16 import 'package:analyzer/src/generated/source.dart'; |
18 import 'package:analyzer/task/dart.dart'; | 17 import 'package:analyzer/task/dart.dart'; |
19 import 'package:plugin/plugin.dart'; | 18 import 'package:plugin/plugin.dart'; |
20 import 'package:test/test.dart'; | 19 import 'package:test/test.dart'; |
21 import 'package:test_reflective_loader/test_reflective_loader.dart'; | 20 import 'package:test_reflective_loader/test_reflective_loader.dart'; |
22 | 21 |
23 import '../analysis_abstract.dart'; | 22 import '../analysis_abstract.dart'; |
24 | 23 |
(...skipping 130 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
155 expect(result.value, isNotNull); | 154 expect(result.value, isNotNull); |
156 Source source = result.target.source; | 155 Source source = result.target.source; |
157 test.parsedUnitFiles.add(source.fullName); | 156 test.parsedUnitFiles.add(source.fullName); |
158 domain.scheduleNotification( | 157 domain.scheduleNotification( |
159 result.context, source, AnalysisService.NAVIGATION); | 158 result.context, source, AnalysisService.NAVIGATION); |
160 domain.scheduleNotification( | 159 domain.scheduleNotification( |
161 result.context, source, AnalysisService.OCCURRENCES); | 160 result.context, source, AnalysisService.OCCURRENCES); |
162 }); | 161 }); |
163 } | 162 } |
164 } | 163 } |
OLD | NEW |