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.services.completion.util; | 5 library test.services.completion.util; |
6 | 6 |
7 import 'dart:async'; | 7 import 'dart:async'; |
8 | 8 |
9 import 'package:analysis_services/completion/completion_suggestion.dart'; | 9 import 'package:analysis_server/src/services/completion/completion_suggestion.da
rt'; |
10 import 'package:analysis_services/index/index.dart'; | 10 import 'package:analysis_server/src/services/index/index.dart'; |
11 import 'package:analysis_services/index/local_memory_index.dart'; | 11 import 'package:analysis_server/src/services/index/local_memory_index.dart'; |
12 import 'package:analysis_services/src/completion/dart_completion_manager.dart'; | 12 import 'package:analysis_server/src/services/completion/dart_completion_manager.
dart'; |
13 import 'package:analysis_services/src/search/search_engine.dart'; | 13 import 'package:analysis_server/src/services/search/search_engine_internal.dart'
; |
14 import 'package:analysis_testing/abstract_context.dart'; | 14 import 'package:analysis_testing/abstract_context.dart'; |
15 import 'package:analysis_testing/mock_sdk.dart'; | 15 import 'package:analysis_testing/mock_sdk.dart'; |
16 import 'package:analyzer/src/generated/ast.dart'; | 16 import 'package:analyzer/src/generated/ast.dart'; |
17 import 'package:analyzer/src/generated/element.dart'; | 17 import 'package:analyzer/src/generated/element.dart'; |
18 import 'package:analyzer/src/generated/engine.dart'; | 18 import 'package:analyzer/src/generated/engine.dart'; |
19 import 'package:analyzer/src/generated/source.dart'; | 19 import 'package:analyzer/src/generated/source.dart'; |
20 import 'package:unittest/unittest.dart'; | 20 import 'package:unittest/unittest.dart'; |
21 | 21 |
22 class AbstractCompletionTest extends AbstractContextTest { | 22 class AbstractCompletionTest extends AbstractContextTest { |
23 Index index; | 23 Index index; |
(...skipping 175 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
199 } | 199 } |
200 | 200 |
201 @override | 201 @override |
202 void setUp() { | 202 void setUp() { |
203 super.setUp(); | 203 super.setUp(); |
204 index = createLocalMemoryIndex(); | 204 index = createLocalMemoryIndex(); |
205 searchEngine = new SearchEngineImpl(index); | 205 searchEngine = new SearchEngineImpl(index); |
206 addResolvedUnit(MockSdk.LIB_CORE.path, MockSdk.LIB_CORE.content); | 206 addResolvedUnit(MockSdk.LIB_CORE.path, MockSdk.LIB_CORE.content); |
207 } | 207 } |
208 } | 208 } |
OLD | NEW |