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

Unified Diff: pkg/analysis_server/lib/src/computer/computer_occurrences.dart

Issue 1337143002: Add OCCURRENCES_CONTRIBUTOR_EXTENSION_POINT_ID. (Closed) Base URL: git@github.com:dart-lang/sdk.git@master
Patch Set: Created 5 years, 3 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/computer/computer_occurrences.dart
diff --git a/pkg/analysis_server/lib/src/computer/computer_occurrences.dart b/pkg/analysis_server/lib/src/computer/computer_occurrences.dart
deleted file mode 100644
index 4897a1a5fb3a0680e8594847b3e44cbe0ebbbc0f..0000000000000000000000000000000000000000
--- a/pkg/analysis_server/lib/src/computer/computer_occurrences.dart
+++ /dev/null
@@ -1,78 +0,0 @@
-// Copyright (c) 2014, 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 computer.occurrences;
-
-import 'dart:collection';
-
-import 'package:analysis_server/src/protocol_server.dart' as protocol;
-import 'package:analyzer/src/generated/ast.dart';
-import 'package:analyzer/src/generated/element.dart';
-
-/**
- * A computer for elements occurrences in a Dart [CompilationUnit].
- */
-class DartUnitOccurrencesComputer {
- final CompilationUnit _unit;
-
- final Map<Element, List<int>> _elementsOffsets =
- new HashMap<Element, List<int>>();
-
- DartUnitOccurrencesComputer(this._unit);
-
- /**
- * Returns the computed occurrences, not `null`.
- */
- List<protocol.Occurrences> compute() {
- _unit.accept(new _DartUnitOccurrencesComputerVisitor(this));
- List<protocol.Occurrences> occurrences = <protocol.Occurrences>[];
- _elementsOffsets.forEach((engineElement, offsets) {
- var serverElement = protocol.newElement_fromEngine(engineElement);
- var length = engineElement.displayName.length;
- occurrences.add(new protocol.Occurrences(serverElement, offsets, length));
- });
- return occurrences;
- }
-
- void _addOccurrence(Element element, int offset) {
- element = _canonicalizeElement(element);
- if (element == null || element == DynamicElementImpl.instance) {
- return;
- }
- List<int> offsets = _elementsOffsets[element];
- if (offsets == null) {
- offsets = <int>[];
- _elementsOffsets[element] = offsets;
- }
- offsets.add(offset);
- }
-
- Element _canonicalizeElement(Element element) {
- if (element is FieldFormalParameterElement) {
- element = (element as FieldFormalParameterElement).field;
- }
- if (element is PropertyAccessorElement) {
- element = (element as PropertyAccessorElement).variable;
- }
- if (element is Member) {
- element = (element as Member).baseElement;
- }
- return element;
- }
-}
-
-class _DartUnitOccurrencesComputerVisitor extends RecursiveAstVisitor {
- final DartUnitOccurrencesComputer computer;
-
- _DartUnitOccurrencesComputerVisitor(this.computer);
-
- @override
- visitSimpleIdentifier(SimpleIdentifier node) {
- Element element = node.bestElement;
- if (element != null) {
- computer._addOccurrence(element, node.offset);
- }
- return super.visitSimpleIdentifier(node);
- }
-}

Powered by Google App Engine
This is Rietveld 408576698