| Index: pkg/analysis_server/lib/src/services/completion/dart/local_constructor_contributor.dart
|
| diff --git a/pkg/analysis_server/lib/src/services/completion/dart/local_constructor_contributor.dart b/pkg/analysis_server/lib/src/services/completion/dart/local_constructor_contributor.dart
|
| index a50261552e1acf97dac706aef2e9e7aa92e8e54f..6af5849a8d019aaaf5f5e02d5c2f6c274b277ca4 100644
|
| --- a/pkg/analysis_server/lib/src/services/completion/dart/local_constructor_contributor.dart
|
| +++ b/pkg/analysis_server/lib/src/services/completion/dart/local_constructor_contributor.dart
|
| @@ -2,12 +2,8 @@
|
| // 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.contributor.dart.constructor;
|
| -
|
| import 'dart:async';
|
|
|
| -import 'package:analysis_server/protocol/protocol_generated.dart' as protocol
|
| - show Element, ElementKind;
|
| import 'package:analysis_server/src/protocol_server.dart'
|
| show CompletionSuggestion, CompletionSuggestionKind;
|
| import 'package:analysis_server/src/provisional/completion/dart/completion_dart.dart';
|
| @@ -21,6 +17,8 @@ import 'package:analysis_server/src/services/completion/dart/utilities.dart';
|
| import 'package:analyzer/dart/ast/ast.dart';
|
| import 'package:analyzer/dart/ast/standard_resolution_map.dart';
|
| import 'package:analyzer/dart/element/element.dart';
|
| +import 'package:analyzer_plugin/protocol/protocol_common.dart' as protocol
|
| + show Element, ElementKind;
|
|
|
| /**
|
| * A contributor for calculating constructor suggestions
|
|
|