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

Side by Side Diff: pkg/analyzer_plugin/lib/utilities/completion/completion_core.dart

Issue 2953093002: Update the plugin API (Closed)
Patch Set: Update FixesRequest Created 3 years, 5 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) 2017, the Dart project authors. Please see the AUTHORS file 1 // Copyright (c) 2017, 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 import 'dart:async'; 5 import 'dart:async';
6 6
7 import 'package:analyzer/dart/analysis/results.dart'; 7 import 'package:analyzer/dart/analysis/results.dart';
8 import 'package:analyzer/file_system/file_system.dart'; 8 import 'package:analyzer/file_system/file_system.dart';
9 import 'package:analyzer_plugin/protocol/protocol.dart'; 9 import 'package:analyzer_plugin/protocol/protocol.dart';
10 import 'package:analyzer_plugin/protocol/protocol_common.dart'; 10 import 'package:analyzer_plugin/protocol/protocol_common.dart';
(...skipping 55 matching lines...) Expand 10 before | Expand all | Expand 10 after
66 * An object used to produce completion suggestions. 66 * An object used to produce completion suggestions.
67 * 67 *
68 * Clients may implement this class when implementing plugins. 68 * Clients may implement this class when implementing plugins.
69 */ 69 */
70 abstract class CompletionContributor { 70 abstract class CompletionContributor {
71 /** 71 /**
72 * Contribute completion suggestions for the completion location specified by 72 * Contribute completion suggestions for the completion location specified by
73 * the given [request] into the given [collector]. 73 * the given [request] into the given [collector].
74 */ 74 */
75 Future<Null> computeSuggestions( 75 Future<Null> computeSuggestions(
76 CompletionRequest request, CompletionCollector collector); 76 covariant CompletionRequest request, CompletionCollector collector);
77 } 77 }
78 78
79 /** 79 /**
80 * A generator that will generate a 'completion.getSuggestions' response. 80 * A generator that will generate a 'completion.getSuggestions' response.
81 * 81 *
82 * Clients may not extend, implement or mix-in this class. 82 * Clients may not extend, implement or mix-in this class.
83 */ 83 */
84 class CompletionGenerator { 84 class CompletionGenerator {
85 /** 85 /**
86 * The contributors to be used to generate the completion suggestions. 86 * The contributors to be used to generate the completion suggestions.
(...skipping 48 matching lines...) Expand 10 before | Expand all | Expand 10 after
135 * requested. 135 * requested.
136 */ 136 */
137 int get offset; 137 int get offset;
138 138
139 /** 139 /**
140 * Return the resource provider associated with this request. 140 * Return the resource provider associated with this request.
141 */ 141 */
142 ResourceProvider get resourceProvider; 142 ResourceProvider get resourceProvider;
143 143
144 /** 144 /**
145 * The analysis result for the file in which the completion is being
146 * requested.
147 */
148 ResolveResult get result;
149
150 /**
151 * Throw an [AbortCompletion] if the completion request has been aborted. 145 * Throw an [AbortCompletion] if the completion request has been aborted.
152 */ 146 */
153 void checkAborted(); 147 void checkAborted();
154 } 148 }
149
150 /**
151 * The information about a requested list of completions when completing in a
152 * `.dart` file.
153 *
154 * Clients may not extend, implement or mix-in this class.
155 */
156 abstract class DartCompletionRequest implements CompletionRequest {
157 /**
158 * The analysis result for the file in which the completion is being
159 * requested.
160 */
161 ResolveResult get result;
162 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698