| Index: pkg/analysis_server/lib/edit/assist/assist_core.dart
|
| diff --git a/pkg/analysis_server/lib/edit/assist/assist_core.dart b/pkg/analysis_server/lib/edit/assist/assist_core.dart
|
| index b1857ff3ffd107b4b157cb422ac65bf71c412542..537791c63835d2594cfda70c4f30b78d91f1e4ed 100644
|
| --- a/pkg/analysis_server/lib/edit/assist/assist_core.dart
|
| +++ b/pkg/analysis_server/lib/edit/assist/assist_core.dart
|
| @@ -10,6 +10,8 @@ import 'package:analyzer/src/generated/source.dart';
|
|
|
| /**
|
| * A description of a single proposed assist.
|
| + *
|
| + * Clients are not expected to subtype this class.
|
| */
|
| class Assist {
|
| /**
|
| @@ -48,6 +50,8 @@ class Assist {
|
|
|
| /**
|
| * An object used to produce assists for a specific location.
|
| + *
|
| + * Clients are expected to subtype this class when implementing plugins.
|
| */
|
| abstract class AssistContributor {
|
| /**
|
| @@ -64,6 +68,8 @@ abstract class AssistContributor {
|
| * A description of a class of assists. Instances are intended to hold the
|
| * information that is common across a number of assists and to be shared by
|
| * those assists.
|
| + *
|
| + * Clients are not expected to subtype this class.
|
| */
|
| class AssistKind {
|
| /**
|
|
|