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

Unified Diff: pkg/analysis_server/lib/src/services/index/indexable_file.dart

Issue 1801883002: Remove old index and search implementations. (Closed) Base URL: git@github.com:dart-lang/sdk.git@master
Patch Set: Created 4 years, 9 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 side-by-side diff with in-line comments
Download patch
Index: pkg/analysis_server/lib/src/services/index/indexable_file.dart
diff --git a/pkg/analysis_server/lib/src/services/index/indexable_file.dart b/pkg/analysis_server/lib/src/services/index/indexable_file.dart
deleted file mode 100644
index 4e1c873965773f981dc8bcbdd476908d742a27e0..0000000000000000000000000000000000000000
--- a/pkg/analysis_server/lib/src/services/index/indexable_file.dart
+++ /dev/null
@@ -1,74 +0,0 @@
-// Copyright (c) 2015, the Dart project authors. Please see the AUTHORS file
-// for details. All rights reserved. Use of this source code is governed by a
-// BSD-style license that can be found in the LICENSE file.
-
-library services.index.indexable_file;
-
-import 'package:analysis_server/src/provisional/index/index_core.dart';
-import 'package:analyzer/src/generated/engine.dart';
-
-/**
- * An [IndexableObject] which is used to index references to a file.
- */
-class IndexableFile implements IndexableObject {
- /**
- * The path of the file to be indexed.
- */
- @override
- final String path;
-
- /**
- * Initialize a newly created indexable file to represent the given [path].
- */
- IndexableFile(this.path);
-
- @override
- String get filePath => path;
-
- @override
- IndexableObjectKind get kind => IndexableFileKind.INSTANCE;
-
- @override
- int get offset => -1;
-
- @override
- bool operator ==(Object object) =>
- object is IndexableFile && object.path == path;
-
- @override
- String toString() => path;
-}
-
-/**
- * The kind of an indexable file.
- */
-class IndexableFileKind implements IndexableObjectKind<IndexableFile> {
- /**
- * The unique instance of this class.
- */
- static final IndexableFileKind INSTANCE =
- new IndexableFileKind._(IndexableObjectKind.nextIndex);
-
- /**
- * The index uniquely identifying this kind.
- */
- final int index;
-
- /**
- * Initialize a newly created kind to have the given [index].
- */
- IndexableFileKind._(this.index) {
- IndexableObjectKind.register(this);
- }
-
- @override
- IndexableFile decode(AnalysisContext context, String filePath, int offset) {
- return new IndexableFile(filePath);
- }
-
- @override
- int encodeHash(StringToInt stringToInt, IndexableFile indexable) {
- String path = indexable.path;
- return stringToInt(path);
- }
-}

Powered by Google App Engine
This is Rietveld 408576698