| Index: pkg/analysis_server/lib/src/services/completion/dart/override_contributor.dart
|
| diff --git a/pkg/analysis_server/lib/src/services/completion/dart/inherited_contributor.dart b/pkg/analysis_server/lib/src/services/completion/dart/override_contributor.dart
|
| similarity index 98%
|
| rename from pkg/analysis_server/lib/src/services/completion/dart/inherited_contributor.dart
|
| rename to pkg/analysis_server/lib/src/services/completion/dart/override_contributor.dart
|
| index d60076b642ec2cc12ff5de1d28768f0002729415..e61ebbe6560dd4bdbef546aa342f74c00ec89355 100644
|
| --- a/pkg/analysis_server/lib/src/services/completion/dart/inherited_contributor.dart
|
| +++ b/pkg/analysis_server/lib/src/services/completion/dart/override_contributor.dart
|
| @@ -2,7 +2,7 @@
|
| // 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 services.completion.dart.invocation;
|
| +library services.completion.dart.override;
|
|
|
| import 'dart:async';
|
|
|
| @@ -22,7 +22,7 @@ import 'package:analyzer/src/generated/source.dart';
|
| * A completion contributor used to suggest replacing partial identifiers inside
|
| * a class declaration with templates for inherited members.
|
| */
|
| -class InheritedContributor implements DartCompletionContributor {
|
| +class OverrideContributor implements DartCompletionContributor {
|
| @override
|
| Future<List<CompletionSuggestion>> computeSuggestions(
|
| DartCompletionRequest request) async {
|
|
|