| Index: pkg/analysis_server/lib/src/services/correction/assist.dart
|
| diff --git a/pkg/analysis_server/lib/src/services/correction/assist.dart b/pkg/analysis_server/lib/src/services/correction/assist.dart
|
| index 631354ef77d3822a84524cf56b8ce6e60ffc2b34..5bdbe2487e33fffa89e91c5b221be9d8f8cca6e7 100644
|
| --- a/pkg/analysis_server/lib/src/services/correction/assist.dart
|
| +++ b/pkg/analysis_server/lib/src/services/correction/assist.dart
|
| @@ -57,6 +57,8 @@ class DartAssistKind {
|
| const AssistKind('CONVERT_INTO_IS_NOT', 30, "Convert into is!");
|
| static const CONVERT_INTO_IS_NOT_EMPTY = const AssistKind(
|
| 'CONVERT_INTO_IS_NOT_EMPTY', 30, "Convert into 'isNotEmpty'");
|
| + static const CONVERT_TO_FIELD_PARAMETER = const AssistKind(
|
| + 'CONVERT_TO_FIELD_PARAMETER', 30, "Convert to field formal parameter");
|
| static const CONVERT_TO_NORMAL_PARAMETER = const AssistKind(
|
| 'CONVERT_TO_NORMAL_PARAMETER', 30, "Convert to normal parameter");
|
| static const ENCAPSULATE_FIELD =
|
|
|