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

Side by Side Diff: pkg/analysis_server/lib/src/domains/analysis/occurrences_dart.dart

Issue 1398333002: Extract protocol_dart.dart APIs. (Closed) Base URL: git@github.com:dart-lang/sdk.git@master
Patch Set: Add new files. Created 5 years, 2 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 unified diff | Download patch
OLDNEW
1 // Copyright (c) 2015, the Dart project authors. Please see the AUTHORS file 1 // Copyright (c) 2015, 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 domains.analysis.occurrences_dart; 5 library domains.analysis.occurrences_dart;
6 6
7 import 'package:analysis_server/plugin/analysis/occurrences/occurrences_core.dar t'; 7 import 'package:analysis_server/plugin/analysis/occurrences/occurrences_core.dar t';
8 import 'package:analysis_server/src/protocol_server.dart' as protocol; 8 import 'package:analysis_server/src/protocol_server.dart' as protocol;
9 import 'package:analyzer/src/generated/ast.dart'; 9 import 'package:analyzer/src/generated/ast.dart';
10 import 'package:analyzer/src/generated/element.dart'; 10 import 'package:analyzer/src/generated/element.dart';
(...skipping 11 matching lines...) Expand all
22 if (libraries.isNotEmpty) { 22 if (libraries.isNotEmpty) {
23 CompilationUnit unit = 23 CompilationUnit unit =
24 context.getResolvedCompilationUnit2(source, libraries.first); 24 context.getResolvedCompilationUnit2(source, libraries.first);
25 if (unit != null) { 25 if (unit != null) {
26 _DartUnitOccurrencesComputerVisitor visitor = 26 _DartUnitOccurrencesComputerVisitor visitor =
27 new _DartUnitOccurrencesComputerVisitor(); 27 new _DartUnitOccurrencesComputerVisitor();
28 unit.accept(visitor); 28 unit.accept(visitor);
29 visitor.elementsOffsets.forEach((engineElement, offsets) { 29 visitor.elementsOffsets.forEach((engineElement, offsets) {
30 int length = engineElement.nameLength; 30 int length = engineElement.nameLength;
31 protocol.Element serverElement = 31 protocol.Element serverElement =
32 protocol.newElement_fromEngine(engineElement); 32 protocol.convertElement(engineElement);
33 protocol.Occurrences occurrences = 33 protocol.Occurrences occurrences =
34 new protocol.Occurrences(serverElement, offsets, length); 34 new protocol.Occurrences(serverElement, offsets, length);
35 collector.addOccurrences(occurrences); 35 collector.addOccurrences(occurrences);
36 }); 36 });
37 } 37 }
38 } 38 }
39 } 39 }
40 } 40 }
41 41
42 class _DartUnitOccurrencesComputerVisitor extends RecursiveAstVisitor { 42 class _DartUnitOccurrencesComputerVisitor extends RecursiveAstVisitor {
(...skipping 27 matching lines...) Expand all
70 } 70 }
71 if (element is PropertyAccessorElement) { 71 if (element is PropertyAccessorElement) {
72 element = (element as PropertyAccessorElement).variable; 72 element = (element as PropertyAccessorElement).variable;
73 } 73 }
74 if (element is Member) { 74 if (element is Member) {
75 element = (element as Member).baseElement; 75 element = (element as Member).baseElement;
76 } 76 }
77 return element; 77 return element;
78 } 78 }
79 } 79 }
OLDNEW
« no previous file with comments | « pkg/analysis_server/lib/src/domains/analysis/navigation_dart.dart ('k') | pkg/analysis_server/lib/src/protocol_server.dart » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698