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 5bdbe2487e33fffa89e91c5b221be9d8f8cca6e7..6cc4739f7272211179355f77677a9908454b91d1 100644 |
--- a/pkg/analysis_server/lib/src/services/correction/assist.dart |
+++ b/pkg/analysis_server/lib/src/services/correction/assist.dart |
@@ -82,10 +82,12 @@ class DartAssistKind { |
static const REMOVE_TYPE_ANNOTATION = |
const AssistKind('REMOVE_TYPE_ANNOTATION', 29, "Remove type annotation"); |
static const REPLACE_CONDITIONAL_WITH_IF_ELSE = const AssistKind( |
- 'REPLACE_CONDITIONAL_WITH_IF_ELSE', 30, |
+ 'REPLACE_CONDITIONAL_WITH_IF_ELSE', |
+ 30, |
"Replace conditional with 'if-else'"); |
static const REPLACE_IF_ELSE_WITH_CONDITIONAL = const AssistKind( |
- 'REPLACE_IF_ELSE_WITH_CONDITIONAL', 30, |
+ 'REPLACE_IF_ELSE_WITH_CONDITIONAL', |
+ 30, |
"Replace 'if-else' with conditional ('c ? x : y')"); |
static const SPLIT_AND_CONDITION = |
const AssistKind('SPLIT_AND_CONDITION', 30, "Split && condition"); |