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

Issue 766323002: Compressed/optimized navigation notification. (Closed)

Created:
6 years ago by scheglov
Modified:
6 years ago
CC:
reviews_dartlang.org, ricow1
Visibility:
Public.

Description

Compressed/optimized navigation notification. R=brianwilkerson@google.com, paulberry@google.com BUG= Committed: https://code.google.com/p/dart/source/detail?r=42049

Patch Set 1 #

Total comments: 14

Patch Set 2 : Updates for review comments. #

Unified diffs Side-by-side diffs Delta from patch set Stats (+700 lines, -229 lines) Patch
M editor/tools/plugins/com.google.dart.server/src/com/google/dart/server/generated/types/NavigationRegion.java View 1 6 chunks +25 lines, -11 lines 0 comments Download
A + editor/tools/plugins/com.google.dart.server/src/com/google/dart/server/generated/types/NavigationTarget.java View 1 7 chunks +61 lines, -32 lines 0 comments Download
M editor/tools/plugins/com.google.dart.server/src/com/google/dart/server/internal/remote/processor/NotificationAnalysisNavigationProcessor.java View 1 2 chunks +14 lines, -1 line 0 comments Download
M editor/tools/plugins/com.google.dart.server_test/src/com/google/dart/server/internal/TestAnalysisServerListener.java View 1 2 chunks +4 lines, -4 lines 0 comments Download
M editor/tools/plugins/com.google.dart.server_test/src/com/google/dart/server/internal/remote/RemoteAnalysisServerImplTest.java View 1 3 chunks +37 lines, -64 lines 0 comments Download
M editor/tools/plugins/com.google.dart.tools.ui/src/com/google/dart/tools/internal/search/ui/FindReferencesAction_NEW.java View 2 chunks +3 lines, -2 lines 0 comments Download
M editor/tools/plugins/com.google.dart.tools.ui/src/com/google/dart/tools/ui/DartUI.java View 2 chunks +23 lines, -0 lines 0 comments Download
M editor/tools/plugins/com.google.dart.tools.ui/src/com/google/dart/tools/ui/actions/ConvertGetterToMethodAction_NEW.java View 2 chunks +5 lines, -5 lines 0 comments Download
M editor/tools/plugins/com.google.dart.tools.ui/src/com/google/dart/tools/ui/actions/ConvertMethodToGetterAction_NEW.java View 2 chunks +5 lines, -5 lines 0 comments Download
M editor/tools/plugins/com.google.dart.tools.ui/src/com/google/dart/tools/ui/actions/InlineLocalAction_NEW.java View 2 chunks +5 lines, -5 lines 0 comments Download
M editor/tools/plugins/com.google.dart.tools.ui/src/com/google/dart/tools/ui/actions/InlineMethodAction_NEW.java View 2 chunks +5 lines, -5 lines 0 comments Download
M editor/tools/plugins/com.google.dart.tools.ui/src/com/google/dart/tools/ui/actions/OpenAction_NEW.java View 4 chunks +18 lines, -6 lines 0 comments Download
M editor/tools/plugins/com.google.dart.tools.ui/src/com/google/dart/tools/ui/actions/OpenAction_OLD.java View 2 chunks +0 lines, -16 lines 0 comments Download
M editor/tools/plugins/com.google.dart.tools.ui/src/com/google/dart/tools/ui/actions/OpenTypeHierarchyAction_NEW.java View 2 chunks +3 lines, -3 lines 0 comments Download
M editor/tools/plugins/com.google.dart.tools.ui/src/com/google/dart/tools/ui/internal/actions/NewSelectionConverter.java View 1 3 chunks +5 lines, -5 lines 0 comments Download
M editor/tools/plugins/com.google.dart.tools.ui/src/com/google/dart/tools/ui/internal/refactoring/actions/RenameDartElementAction_NEW.java View 2 chunks +2 lines, -1 line 0 comments Download
M editor/tools/plugins/com.google.dart.tools.ui/src/com/google/dart/tools/ui/internal/text/editor/DartNavigationRegionHyperlink_NEW.java View 1 2 chunks +2 lines, -2 lines 0 comments Download
M pkg/analysis_server/doc/api.html View 1 6 chunks +61 lines, -6 lines 0 comments Download
M pkg/analysis_server/lib/src/computer/computer_navigation.dart View 1 3 chunks +34 lines, -7 lines 0 comments Download
M pkg/analysis_server/lib/src/generated_protocol.dart View 1 12 chunks +179 lines, -11 lines 0 comments Download
M pkg/analysis_server/lib/src/operation/operation_analysis.dart View 1 chunk +7 lines, -2 lines 0 comments Download
M pkg/analysis_server/lib/src/protocol_server.dart View 1 1 chunk +16 lines, -0 lines 0 comments Download
M pkg/analysis_server/test/analysis/notification_navigation_test.dart View 1 5 chunks +20 lines, -18 lines 0 comments Download
M pkg/analysis_server/test/integration/analysis/navigation_test.dart View 1 2 chunks +12 lines, -7 lines 0 comments Download
M pkg/analysis_server/test/integration/analysis/package_root_test.dart View 1 2 chunks +8 lines, -2 lines 0 comments Download
M pkg/analysis_server/test/integration/integration_test_methods.dart View 1 1 chunk +10 lines, -0 lines 0 comments Download
M pkg/analysis_server/test/integration/protocol_matchers.dart View 1 2 chunks +29 lines, -3 lines 0 comments Download
M pkg/analysis_server/tool/spec/codegen_java_types.dart View 1 2 chunks +39 lines, -0 lines 0 comments Download
M pkg/analysis_server/tool/spec/spec_input.html View 1 4 chunks +68 lines, -6 lines 0 comments Download

Messages

Total messages: 5 (0 generated)
scheglov
6 years ago (2014-12-01 21:13:16 UTC) #1
Brian Wilkerson
LGTM https://codereview.chromium.org/766323002/diff/1/pkg/analysis_server/tool/spec/spec_input.html File pkg/analysis_server/tool/spec/spec_input.html (right): https://codereview.chromium.org/766323002/diff/1/pkg/analysis_server/tool/spec/spec_input.html#newcode700 pkg/analysis_server/tool/spec/spec_input.html:700: <field name="targetFiles"> How about "files"? The name "targetFiles" ...
6 years ago (2014-12-01 21:42:15 UTC) #2
Paul Berry
The only blocking issue for me is storing all targets/files in the NavigationRegion object rather ...
6 years ago (2014-12-01 21:50:37 UTC) #3
scheglov
https://codereview.chromium.org/766323002/diff/1/pkg/analysis_server/lib/src/computer/computer_navigation.dart File pkg/analysis_server/lib/src/computer/computer_navigation.dart (right): https://codereview.chromium.org/766323002/diff/1/pkg/analysis_server/lib/src/computer/computer_navigation.dart#newcode54 pkg/analysis_server/lib/src/computer/computer_navigation.dart:54: index = targetMap.length; On 2014/12/01 21:50:37, Paul Berry wrote: ...
6 years ago (2014-12-01 22:20:32 UTC) #4
scheglov
6 years ago (2014-12-01 22:21:46 UTC) #5
Message was sent while issue was closed.
Committed patchset #2 (id:20001) manually as 42049 (presubmit successful).

Powered by Google App Engine
This is Rietveld 408576698