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

Unified Diff: pkg/analysis_server/lib/src/services/correction/assist.dart

Issue 2812733002: Fix renaming that got dropped (Closed)
Patch Set: Created 3 years, 8 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
« no previous file with comments | « pkg/analysis_server/lib/src/services/completion/statement/statement_completion.dart ('k') | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
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 71589504c3b2b2bf2ede4faaafbd9b56ff022fc7..7e959af1a1f3870f556c380d7cd200979b903592 100644
--- a/pkg/analysis_server/lib/src/services/correction/assist.dart
+++ b/pkg/analysis_server/lib/src/services/correction/assist.dart
@@ -125,10 +125,10 @@ class DartAssistKind {
const AssistKind("MOVE_FLUTTER_WIDGET_DOWN", 30, "Move widget down");
static const MOVE_FLUTTER_WIDGET_UP =
const AssistKind("MOVE_FLUTTER_WIDGET_UP", 30, "Move widget up");
- static const REPARENT_FLUTTER_LIST = const AssistKind(
- "REPARENT_FLUTTER_LIST", 30, "Wrap widget list with new widget");
- static const REPARENT_FLUTTER_WIDGET = const AssistKind(
- "REPARENT_FLUTTER_WIDGET", 30, "Wrap new-expression with new widget");
+ static const REPARENT_FLUTTER_LIST =
+ const AssistKind("REPARENT_FLUTTER_LIST", 30, "Wrap with new widget");
+ static const REPARENT_FLUTTER_WIDGET =
+ const AssistKind("REPARENT_FLUTTER_WIDGET", 30, "Wrap with new widget");
static const REMOVE_TYPE_ANNOTATION =
const AssistKind('REMOVE_TYPE_ANNOTATION', 29, "Remove type annotation");
static const REPLACE_CONDITIONAL_WITH_IF_ELSE = const AssistKind(
« no previous file with comments | « pkg/analysis_server/lib/src/services/completion/statement/statement_completion.dart ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698