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

Unified Diff: pkg/analysis_server/lib/plugin/edit/assist/assist_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/plugin/edit/assist/assist_core.dart
diff --git a/pkg/analysis_server/lib/plugin/edit/assist/assist_core.dart b/pkg/analysis_server/lib/plugin/edit/assist/assist_core.dart
index 08bad0982e7962ed2fba834d29f863967fabc296..d4903e6a9273bdd058d646baae677586ad2b1452 100644
--- a/pkg/analysis_server/lib/plugin/edit/assist/assist_core.dart
+++ b/pkg/analysis_server/lib/plugin/edit/assist/assist_core.dart
@@ -12,7 +12,7 @@ import 'package:analyzer/src/generated/source.dart';
/**
* A description of a single proposed assist.
*
- * Clients are not expected to subtype this class.
+ * Clients may not extend, implement or mix-in this class.
*/
class Assist {
/**
@@ -52,7 +52,7 @@ class Assist {
/**
* An object used to produce assists for a specific location.
*
- * Clients are expected to subtype this class when implementing plugins.
+ * Clients may implement this class when implementing plugins.
*/
abstract class AssistContributor {
/**
@@ -70,7 +70,7 @@ abstract class AssistContributor {
* information that is common across a number of assists and to be shared by
* those assists.
*
- * Clients are not expected to subtype this class.
+ * Clients may not extend, implement or mix-in this class.
*/
class AssistKind {
/**

Powered by Google App Engine
This is Rietveld 408576698