Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(562)

Side by Side Diff: pkg/analysis_server/lib/src/services/completion/dart/label_contributor.dart

Issue 1788223002: Deprecate the generated AST library and clean up imports (Closed) Base URL: https://github.com/dart-lang/sdk.git@master
Patch Set: Created 4 years, 9 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
OLDNEW
1 // Copyright (c) 2015, the Dart project authors. Please see the AUTHORS file 1 // Copyright (c) 2015, the Dart project authors. Please see the AUTHORS file
2 // for details. All rights reserved. Use of this source code is governed by a 2 // for details. All rights reserved. Use of this source code is governed by a
3 // BSD-style license that can be found in the LICENSE file. 3 // BSD-style license that can be found in the LICENSE file.
4 4
5 library services.completion.contributor.dart.label; 5 library services.completion.contributor.dart.label;
6 6
7 import 'dart:async'; 7 import 'dart:async';
8 8
9 import 'package:analysis_server/plugin/protocol/protocol.dart' as protocol 9 import 'package:analysis_server/plugin/protocol/protocol.dart' as protocol
10 show Element, ElementKind; 10 show Element, ElementKind;
11 import 'package:analysis_server/src/provisional/completion/dart/completion_dart. dart'; 11 import 'package:analysis_server/src/provisional/completion/dart/completion_dart. dart';
12 import 'package:analysis_server/src/services/completion/dart/completion_manager. dart' 12 import 'package:analysis_server/src/services/completion/dart/completion_manager. dart'
13 show DartCompletionRequestImpl; 13 show DartCompletionRequestImpl;
14 import 'package:analysis_server/src/services/completion/dart/local_declaration_v isitor.dart' 14 import 'package:analysis_server/src/services/completion/dart/local_declaration_v isitor.dart'
15 show LocalDeclarationVisitor; 15 show LocalDeclarationVisitor;
16 import 'package:analysis_server/src/services/completion/dart/optype.dart'; 16 import 'package:analysis_server/src/services/completion/dart/optype.dart';
17 import 'package:analyzer/dart/ast/ast.dart';
17 import 'package:analyzer/dart/ast/token.dart'; 18 import 'package:analyzer/dart/ast/token.dart';
18 import 'package:analyzer/src/dart/ast/token.dart'; 19 import 'package:analyzer/src/dart/ast/token.dart';
19 import 'package:analyzer/src/generated/ast.dart';
20 import 'package:analyzer/src/generated/source.dart'; 20 import 'package:analyzer/src/generated/source.dart';
21 21
22 import '../../../protocol_server.dart' 22 import '../../../protocol_server.dart'
23 show CompletionSuggestion, CompletionSuggestionKind, Location; 23 show CompletionSuggestion, CompletionSuggestionKind, Location;
24 24
25 const DYNAMIC = 'dynamic'; 25 const DYNAMIC = 'dynamic';
26 26
27 final TypeName NO_RETURN_TYPE = new TypeName( 27 final TypeName NO_RETURN_TYPE = new TypeName(
28 new SimpleIdentifier(new StringToken(TokenType.IDENTIFIER, '', 0)), null); 28 new SimpleIdentifier(new StringToken(TokenType.IDENTIFIER, '', 0)), null);
29 29
(...skipping 248 matching lines...) Expand 10 before | Expand all | Expand 10 after
278 0, 278 0,
279 false, 279 false,
280 false); 280 false);
281 suggestions.add(suggestion); 281 suggestions.add(suggestion);
282 return suggestion; 282 return suggestion;
283 } 283 }
284 } 284 }
285 return null; 285 return null;
286 } 286 }
287 } 287 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698