| Index: pkg/analysis_server/lib/src/computer/computer_hover.dart
|
| diff --git a/pkg/analysis_server/lib/src/computer/computer_hover.dart b/pkg/analysis_server/lib/src/computer/computer_hover.dart
|
| index ceafb22e96360cabdfad3e1f4e0575b0feb9ab36..e80a243ac0884c9b4c5843c6f53fc308839d39d4 100644
|
| --- a/pkg/analysis_server/lib/src/computer/computer_hover.dart
|
| +++ b/pkg/analysis_server/lib/src/computer/computer_hover.dart
|
| @@ -65,7 +65,7 @@ class DartUnitHoverComputer {
|
| * Returns the computed hover, maybe `null`.
|
| */
|
| HoverInformation compute() {
|
| - AstNode node = new NodeLocator.con1(_offset).searchWithin(_unit);
|
| + AstNode node = new NodeLocator(_offset).searchWithin(_unit);
|
| if (node == null) {
|
| return null;
|
| }
|
|
|