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

Unified Diff: pkg/analysis_server/lib/src/provisional/completion/completion_core.dart

Issue 1409353002: Clean up wording of client usage expectations (Closed) Base URL: https://github.com/dart-lang/sdk.git@master
Patch Set: Created 5 years, 2 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 side-by-side diff with in-line comments
Download patch
Index: pkg/analysis_server/lib/src/provisional/completion/completion_core.dart
diff --git a/pkg/analysis_server/lib/src/provisional/completion/completion_core.dart b/pkg/analysis_server/lib/src/provisional/completion/completion_core.dart
index d9c101b1599d51bc9548e158ba5de567e0ada25c..75f830b5916df11a89f72d43216981684e8a517f 100644
--- a/pkg/analysis_server/lib/src/provisional/completion/completion_core.dart
+++ b/pkg/analysis_server/lib/src/provisional/completion/completion_core.dart
@@ -14,7 +14,7 @@ import 'package:analyzer/src/generated/source.dart';
* contributors are long-lived objects and must not retain any state between
* invocations of [computeSuggestions].
*
- * Clients are expected to subtype this class when implementing plugins.
+ * Clients may implement this class when implementing plugins.
*/
abstract class CompletionContributor {
/**
@@ -27,7 +27,7 @@ abstract class CompletionContributor {
/**
* The information about a requested list of completions.
*
- * Clients are not expected to subtype this class.
+ * Clients may not extend, implement or mix-in this class.
*/
abstract class CompletionRequest {
/**
@@ -55,7 +55,7 @@ abstract class CompletionRequest {
/**
* The result of computing suggestions for code completion.
*
- * Clients are expected to subtype this class when implementing plugins.
+ * Clients may implement this class when implementing plugins.
*/
abstract class CompletionResult {
/**

Powered by Google App Engine
This is Rietveld 408576698