| Index: pkg/analysis_server/lib/src/protocol_server.dart
|
| diff --git a/pkg/analysis_server/lib/src/protocol_server.dart b/pkg/analysis_server/lib/src/protocol_server.dart
|
| index ea9445767efccfe185694744cd8ba839d5918563..ff98970439143e62151445f9d891370bfa360e19 100644
|
| --- a/pkg/analysis_server/lib/src/protocol_server.dart
|
| +++ b/pkg/analysis_server/lib/src/protocol_server.dart
|
| @@ -257,16 +257,6 @@ Location newLocation_fromUnit(
|
| return _locationForArgs(context, source, range);
|
| }
|
|
|
| -NavigationTarget newNavigationTarget_fromElement(
|
| - engine.Element element, int fileToIndex(String file)) {
|
| - ElementKind kind = newElementKind_fromEngine(element.kind);
|
| - Location location = newLocation_fromElement(element);
|
| - String file = location.file;
|
| - int fileIndex = fileToIndex(file);
|
| - return new NavigationTarget(kind, fileIndex, location.offset, location.length,
|
| - location.startLine, location.startColumn);
|
| -}
|
| -
|
| /**
|
| * Construct based on an element from the analyzer engine.
|
| */
|
|
|