| Index: pkg/analysis_server/lib/src/services/completion/dart/local_reference_contributor.dart
|
| diff --git a/pkg/analysis_server/lib/src/services/completion/dart/local_reference_contributor.dart b/pkg/analysis_server/lib/src/services/completion/dart/local_reference_contributor.dart
|
| index 70b2b448e4e55f0ae4dcc8d6466a74c46c4e4dd2..01298f865156ee5ce6a744c93b2412730ddbbb20 100644
|
| --- a/pkg/analysis_server/lib/src/services/completion/dart/local_reference_contributor.dart
|
| +++ b/pkg/analysis_server/lib/src/services/completion/dart/local_reference_contributor.dart
|
| @@ -17,6 +17,7 @@ import 'package:analysis_server/src/services/completion/dart/optype.dart';
|
| import 'package:analysis_server/src/services/correction/strings.dart';
|
| import 'package:analysis_server/src/utilities/documentation.dart';
|
| import 'package:analyzer/dart/ast/ast.dart';
|
| +import 'package:analyzer/dart/ast/standard_ast_factory.dart';
|
| import 'package:analyzer/dart/ast/token.dart';
|
| import 'package:analyzer/dart/element/element.dart';
|
| import 'package:analyzer/dart/element/type.dart';
|
| @@ -29,8 +30,9 @@ import '../../../protocol_server.dart'
|
|
|
| const DYNAMIC = 'dynamic';
|
|
|
| -final TypeName NO_RETURN_TYPE = new TypeName(
|
| - new SimpleIdentifier(new StringToken(TokenType.IDENTIFIER, '', 0)), null);
|
| +final TypeName NO_RETURN_TYPE = astFactory.typeName(
|
| + astFactory.simpleIdentifier(new StringToken(TokenType.IDENTIFIER, '', 0)),
|
| + null);
|
|
|
| /**
|
| * Create a new protocol Element for inclusion in a completion suggestion.
|
|
|