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

Issue 1801883002: Remove old index and search implementations. (Closed)

Created:
4 years, 9 months ago by scheglov
Modified:
4 years, 9 months ago
Reviewers:
Brian Wilkerson
CC:
reviews_dartlang.org
Base URL:
git@github.com:dart-lang/sdk.git@master
Target Ref:
refs/heads/master
Visibility:
Public.

Description

Remove old index and search implementations. Also rename the new implementation files and classes to remove the '2' suffix. R=brianwilkerson@google.com BUG= Committed: https://github.com/dart-lang/sdk/commit/bd76934452e5fcda0031bcebd65c35f08888da85

Patch Set 1 #

Total comments: 6
Unified diffs Side-by-side diffs Delta from patch set Stats (+1186 lines, -9965 lines) Patch
M pkg/analysis_server/lib/src/analysis_server.dart View 11 chunks +8 lines, -20 lines 0 comments Download
M pkg/analysis_server/lib/src/operation/operation_analysis.dart View 2 chunks +1 line, -5 lines 0 comments Download
M pkg/analysis_server/lib/src/plugin/server_plugin.dart View 6 chunks +0 lines, -33 lines 2 comments Download
D pkg/analysis_server/lib/src/provisional/index/index.dart View 1 chunk +0 lines, -43 lines 0 comments Download
D pkg/analysis_server/lib/src/provisional/index/index_core.dart View 1 chunk +0 lines, -280 lines 0 comments Download
M pkg/analysis_server/lib/src/search/search_domain.dart View 1 chunk +0 lines, -2 lines 0 comments Download
M pkg/analysis_server/lib/src/services/index/index.dart View 1 chunk +422 lines, -234 lines 0 comments Download
D pkg/analysis_server/lib/src/services/index/index_contributor.dart View 1 chunk +0 lines, -841 lines 0 comments Download
D pkg/analysis_server/lib/src/services/index/index_store.dart View 1 chunk +0 lines, -57 lines 0 comments Download
D pkg/analysis_server/lib/src/services/index/indexable_element.dart View 1 chunk +0 lines, -174 lines 0 comments Download
D pkg/analysis_server/lib/src/services/index/indexable_file.dart View 1 chunk +0 lines, -74 lines 0 comments Download
D pkg/analysis_server/lib/src/services/index/local_file_index.dart View 1 chunk +0 lines, -25 lines 0 comments Download
D pkg/analysis_server/lib/src/services/index/local_index.dart View 1 chunk +0 lines, -117 lines 0 comments Download
D pkg/analysis_server/lib/src/services/index/local_memory_index.dart View 1 chunk +0 lines, -18 lines 0 comments Download
D pkg/analysis_server/lib/src/services/index/store/codec.dart View 1 chunk +0 lines, -180 lines 0 comments Download
D pkg/analysis_server/lib/src/services/index/store/collection.dart View 1 chunk +0 lines, -114 lines 0 comments Download
D pkg/analysis_server/lib/src/services/index/store/memory_node_manager.dart View 1 chunk +0 lines, -87 lines 0 comments Download
D pkg/analysis_server/lib/src/services/index/store/split_store.dart View 1 chunk +0 lines, -1168 lines 0 comments Download
D pkg/analysis_server/lib/src/services/index/store/temporary_folder_file_manager.dart View 1 chunk +0 lines, -93 lines 0 comments Download
D pkg/analysis_server/lib/src/services/index2/index2.dart View 1 chunk +0 lines, -554 lines 0 comments Download
M pkg/analysis_server/lib/src/services/search/search_engine.dart View 2 chunks +0 lines, -9 lines 0 comments Download
M pkg/analysis_server/lib/src/services/search/search_engine_internal.dart View 2 chunks +330 lines, -183 lines 2 comments Download
D pkg/analysis_server/lib/src/services/search/search_engine_internal2.dart View 1 chunk +0 lines, -410 lines 0 comments Download
M pkg/analysis_server/lib/src/socket_server.dart View 2 chunks +1 line, -8 lines 0 comments Download
M pkg/analysis_server/lib/src/status/element_writer.dart View 2 chunks +0 lines, -10 lines 0 comments Download
M pkg/analysis_server/lib/src/status/get_handler.dart View 5 chunks +0 lines, -56 lines 0 comments Download
M pkg/analysis_server/lib/src/status/tree_writer.dart View 2 chunks +0 lines, -11 lines 0 comments Download
M pkg/analysis_server/test/analysis/notification_implemented_test.dart View 2 chunks +1 line, -2 lines 0 comments Download
M pkg/analysis_server/test/analysis/update_content_test.dart View 2 chunks +2 lines, -2 lines 0 comments Download
M pkg/analysis_server/test/analysis_abstract.dart View 2 chunks +0 lines, -2 lines 0 comments Download
M pkg/analysis_server/test/analysis_server_test.dart View 1 chunk +0 lines, -1 line 0 comments Download
M pkg/analysis_server/test/domain_analysis_test.dart View 2 chunks +0 lines, -2 lines 0 comments Download
M pkg/analysis_server/test/domain_completion_util.dart View 3 chunks +3 lines, -4 lines 0 comments Download
M pkg/analysis_server/test/domain_diagnostic_test.dart View 1 chunk +0 lines, -1 line 0 comments Download
M pkg/analysis_server/test/domain_execution_test.dart View 1 chunk +0 lines, -1 line 0 comments Download
M pkg/analysis_server/test/domain_server_test.dart View 1 chunk +0 lines, -1 line 0 comments Download
M pkg/analysis_server/test/edit/refactoring_test.dart View 11 chunks +40 lines, -29 lines 0 comments Download
M pkg/analysis_server/test/search/abstract_search_domain.dart View 2 chunks +3 lines, -3 lines 0 comments Download
M pkg/analysis_server/test/search/element_references_test.dart View 1 chunk +2 lines, -1 line 1 comment Download
M pkg/analysis_server/test/search/type_hierarchy_test.dart View 2 chunks +1 line, -2 lines 0 comments Download
M pkg/analysis_server/test/services/completion/dart/completion_contributor_util.dart View 3 chunks +6 lines, -6 lines 0 comments Download
D pkg/analysis_server/test/services/index/dart_index_contributor_test.dart View 1 chunk +0 lines, -1803 lines 0 comments Download
A + pkg/analysis_server/test/services/index/index_test.dart View 2 chunks +4 lines, -4 lines 0 comments Download
D pkg/analysis_server/test/services/index/indexable_file_test.dart View 1 chunk +0 lines, -58 lines 0 comments Download
D pkg/analysis_server/test/services/index/local_file_index_test.dart View 1 chunk +0 lines, -20 lines 0 comments Download
D pkg/analysis_server/test/services/index/local_index_test.dart View 1 chunk +0 lines, -117 lines 0 comments Download
D pkg/analysis_server/test/services/index/store/codec_test.dart View 1 chunk +0 lines, -408 lines 0 comments Download
D pkg/analysis_server/test/services/index/store/collection_test.dart View 1 chunk +0 lines, -77 lines 0 comments Download
D pkg/analysis_server/test/services/index/store/mocks.dart View 1 chunk +0 lines, -17 lines 0 comments Download
D pkg/analysis_server/test/services/index/store/single_source_container.dart View 1 chunk +0 lines, -19 lines 0 comments Download
D pkg/analysis_server/test/services/index/store/split_store_test.dart View 1 chunk +0 lines, -1108 lines 0 comments Download
D pkg/analysis_server/test/services/index/store/temporary_folder_file_manager_test.dart View 1 chunk +0 lines, -90 lines 0 comments Download
D pkg/analysis_server/test/services/index/store/test_all.dart View 1 chunk +0 lines, -26 lines 0 comments Download
M pkg/analysis_server/test/services/index/test_all.dart View 2 chunks +3 lines, -13 lines 0 comments Download
D pkg/analysis_server/test/services/index2/index2_test.dart View 1 chunk +0 lines, -312 lines 0 comments Download
D pkg/analysis_server/test/services/index2/test_all.dart View 1 chunk +0 lines, -18 lines 0 comments Download
M pkg/analysis_server/test/services/refactoring/abstract_refactoring.dart View 3 chunks +6 lines, -6 lines 0 comments Download
M pkg/analysis_server/test/services/search/hierarchy_test.dart View 2 chunks +6 lines, -6 lines 0 comments Download
D pkg/analysis_server/test/services/search/search_engine2_test.dart View 1 chunk +0 lines, -855 lines 0 comments Download
M pkg/analysis_server/test/services/search/search_engine_test.dart View 24 chunks +347 lines, -141 lines 1 comment Download
M pkg/analysis_server/test/services/search/test_all.dart View 2 chunks +0 lines, -2 lines 0 comments Download
M pkg/analysis_server/test/services/test_all.dart View 2 chunks +0 lines, -2 lines 0 comments Download

Messages

Total messages: 5 (1 generated)
scheglov
4 years, 9 months ago (2016-03-14 18:39:52 UTC) #1
Brian Wilkerson
LGTM https://codereview.chromium.org/1801883002/diff/1/pkg/analysis_server/lib/src/plugin/server_plugin.dart File pkg/analysis_server/lib/src/plugin/server_plugin.dart (left): https://codereview.chromium.org/1801883002/diff/1/pkg/analysis_server/lib/src/plugin/server_plugin.dart#oldcode143 pkg/analysis_server/lib/src/plugin/server_plugin.dart:143: ExtensionPoint indexContributorExtensionPoint; Why are we getting rid of ...
4 years, 9 months ago (2016-03-14 18:57:33 UTC) #2
scheglov
https://codereview.chromium.org/1801883002/diff/1/pkg/analysis_server/lib/src/plugin/server_plugin.dart File pkg/analysis_server/lib/src/plugin/server_plugin.dart (left): https://codereview.chromium.org/1801883002/diff/1/pkg/analysis_server/lib/src/plugin/server_plugin.dart#oldcode143 pkg/analysis_server/lib/src/plugin/server_plugin.dart:143: ExtensionPoint indexContributorExtensionPoint; On 2016/03/14 18:57:32, Brian Wilkerson wrote: > ...
4 years, 9 months ago (2016-03-14 19:18:38 UTC) #3
scheglov
4 years, 9 months ago (2016-03-14 19:19:47 UTC) #5
Message was sent while issue was closed.
Committed patchset #1 (id:1) manually as
bd76934452e5fcda0031bcebd65c35f08888da85 (presubmit successful).

Powered by Google App Engine
This is Rietveld 408576698