| 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 services.src.index.local_index; | 5 library services.src.index.local_index; |
| 6 | 6 |
| 7 import 'dart:async'; | 7 import 'dart:async'; |
| 8 | 8 |
| 9 import 'package:analysis_server/src/provisional/index/index_core.dart'; | 9 import 'package:analysis_server/src/provisional/index/index_core.dart'; |
| 10 import 'package:analysis_server/src/services/index/index.dart'; | 10 import 'package:analysis_server/src/services/index/index.dart'; |
| 11 import 'package:analysis_server/src/services/index/store/split_store.dart'; | 11 import 'package:analysis_server/src/services/index/store/split_store.dart'; |
| 12 import 'package:analyzer/src/generated/element.dart'; | 12 import 'package:analyzer/dart/element/element.dart'; |
| 13 import 'package:analyzer/src/generated/engine.dart'; | 13 import 'package:analyzer/src/generated/engine.dart'; |
| 14 import 'package:analyzer/src/generated/source.dart'; | 14 import 'package:analyzer/src/generated/source.dart'; |
| 15 | 15 |
| 16 /** | 16 /** |
| 17 * A local implementation of [Index]. | 17 * A local implementation of [Index]. |
| 18 */ | 18 */ |
| 19 class LocalIndex extends Index { | 19 class LocalIndex extends Index { |
| 20 /** | 20 /** |
| 21 * The index contributors used by this index. | 21 * The index contributors used by this index. |
| 22 */ | 22 */ |
| (...skipping 85 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 108 @override | 108 @override |
| 109 void run() { | 109 void run() { |
| 110 // NO-OP for the local index | 110 // NO-OP for the local index |
| 111 } | 111 } |
| 112 | 112 |
| 113 @override | 113 @override |
| 114 void stop() { | 114 void stop() { |
| 115 // NO-OP for the local index | 115 // NO-OP for the local index |
| 116 } | 116 } |
| 117 } | 117 } |
| OLD | NEW |