| OLD | NEW |
| (Empty) | |
| 1 // Copyright (c) 2014, the Dart project authors. Please see the AUTHORS file |
| 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. |
| 4 |
| 5 library services.completion.computer.dart.keyword; |
| 6 |
| 7 import 'dart:async'; |
| 8 |
| 9 import 'package:analysis_services/completion/completion_computer.dart'; |
| 10 import 'package:analysis_services/completion/completion_suggestion.dart'; |
| 11 import 'package:analyzer/src/generated/ast.dart'; |
| 12 import 'package:analyzer/src/generated/scanner.dart'; |
| 13 |
| 14 /** |
| 15 * A computer for calculating `completion.getSuggestions` request results |
| 16 * for the local library in which the completion is requested. |
| 17 */ |
| 18 class KeywordComputer extends CompletionComputer { |
| 19 |
| 20 @override |
| 21 bool computeFast(CompilationUnit unit, AstNode node, |
| 22 List<CompletionSuggestion> suggestions) { |
| 23 node.accept(new _KeywordVisitor(suggestions)); |
| 24 return true; |
| 25 } |
| 26 |
| 27 @override |
| 28 Future<bool> computeFull(CompilationUnit unit, AstNode node, |
| 29 List<CompletionSuggestion> suggestions) { |
| 30 return new Future.value(false); |
| 31 } |
| 32 } |
| 33 |
| 34 /** |
| 35 * A vistor for generating keyword suggestions. |
| 36 */ |
| 37 class _KeywordVisitor extends GeneralizingAstVisitor { |
| 38 final List<CompletionSuggestion> suggestions; |
| 39 |
| 40 _KeywordVisitor(this.suggestions); |
| 41 |
| 42 visitCompilationUnit(CompilationUnit node) { |
| 43 _addSuggestions( |
| 44 [ |
| 45 Keyword.ABSTRACT, |
| 46 Keyword.CLASS, |
| 47 Keyword.CONST, |
| 48 Keyword.EXPORT, |
| 49 Keyword.FINAL, |
| 50 Keyword.IMPORT, |
| 51 Keyword.LIBRARY, |
| 52 Keyword.PART, |
| 53 Keyword.TYPEDEF, |
| 54 Keyword.VAR]); |
| 55 } |
| 56 |
| 57 visitClassDeclaration(ClassDeclaration node) { |
| 58 _addSuggestions([Keyword.EXTENDS, Keyword.IMPLEMENTS, Keyword.WITH]); |
| 59 } |
| 60 |
| 61 void _addSuggestions(List<Keyword> keywords) { |
| 62 keywords.forEach((Keyword keyword) { |
| 63 String completion = keyword.syntax; |
| 64 suggestions.add( |
| 65 new CompletionSuggestion( |
| 66 CompletionSuggestionKind.KEYWORD, |
| 67 CompletionRelevance.DEFAULT, |
| 68 completion, |
| 69 completion.length, |
| 70 0, |
| 71 false, |
| 72 false)); |
| 73 }); |
| 74 } |
| 75 |
| 76 visitNode(AstNode node) {} |
| 77 } |
| OLD | NEW |