| OLD | NEW |
| 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 analysis_server.src.provisional.completion.completion_dart; | 5 library analysis_server.src.provisional.completion.completion_dart; |
| 6 | 6 |
| 7 import 'dart:async'; | 7 import 'dart:async'; |
| 8 | 8 |
| 9 import 'package:analysis_server/plugin/protocol/protocol.dart'; | 9 import 'package:analysis_server/protocol/protocol_generated.dart'; |
| 10 import 'package:analysis_server/src/provisional/completion/completion_core.dart'
; | 10 import 'package:analysis_server/src/provisional/completion/completion_core.dart'
; |
| 11 import 'package:analysis_server/src/provisional/completion/dart/completion_targe
t.dart'; | 11 import 'package:analysis_server/src/provisional/completion/dart/completion_targe
t.dart'; |
| 12 import 'package:analysis_server/src/services/completion/dart/optype.dart'; | 12 import 'package:analysis_server/src/services/completion/dart/optype.dart'; |
| 13 import 'package:analyzer/dart/ast/ast.dart'; | 13 import 'package:analyzer/dart/ast/ast.dart'; |
| 14 import 'package:analyzer/dart/element/element.dart'; | 14 import 'package:analyzer/dart/element/element.dart'; |
| 15 import 'package:analyzer/dart/element/type.dart'; | 15 import 'package:analyzer/dart/element/type.dart'; |
| 16 import 'package:analyzer/src/generated/source.dart'; | 16 import 'package:analyzer/src/generated/source.dart'; |
| 17 | 17 |
| 18 export 'package:analysis_server/src/provisional/completion/completion_core.dart' | 18 export 'package:analysis_server/src/provisional/completion/completion_core.dart' |
| 19 show EMPTY_LIST; | 19 show EMPTY_LIST; |
| (...skipping 132 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 152 /** | 152 /** |
| 153 * Return a [Future] that completes with a list of [CompilationUnitElement]s | 153 * Return a [Future] that completes with a list of [CompilationUnitElement]s |
| 154 * comprising the library in which in which the completion is occurring. | 154 * comprising the library in which in which the completion is occurring. |
| 155 * The [Future] may return `null` if the library unit cannot be determined | 155 * The [Future] may return `null` if the library unit cannot be determined |
| 156 * (e.g. unlinked part file). | 156 * (e.g. unlinked part file). |
| 157 * Any information obtained from [target] prior to calling this method | 157 * Any information obtained from [target] prior to calling this method |
| 158 * should be discarded as it may have changed. | 158 * should be discarded as it may have changed. |
| 159 */ | 159 */ |
| 160 Future<List<CompilationUnitElement>> resolveUnits(); | 160 Future<List<CompilationUnitElement>> resolveUnits(); |
| 161 } | 161 } |
| OLD | NEW |