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

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

Issue 2377803002: Order suggested Quick Fix imports: direct, export, non-API. (Closed)
Patch Set: Created 4 years, 3 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 | « no previous file | pkg/analysis_server/lib/src/services/correction/fix_internal.dart » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: pkg/analysis_server/lib/src/services/correction/fix.dart
diff --git a/pkg/analysis_server/lib/src/services/correction/fix.dart b/pkg/analysis_server/lib/src/services/correction/fix.dart
index 7f926b41e32826cca7f65531b9d5919f6cc6feb5..a0b6d10ce7dc16106f494714235c126b06fb9302 100644
--- a/pkg/analysis_server/lib/src/services/correction/fix.dart
+++ b/pkg/analysis_server/lib/src/services/correction/fix.dart
@@ -165,8 +165,12 @@ class DartFixKind {
'CREATE_NO_SUCH_METHOD', 51, "Create 'noSuchMethod' method");
static const IMPORT_LIBRARY_PREFIX = const FixKind('IMPORT_LIBRARY_PREFIX',
51, "Use imported library '{0}' with prefix '{1}'");
- static const IMPORT_LIBRARY_PROJECT =
- const FixKind('IMPORT_LIBRARY_PROJECT', 49, "Import library '{0}'");
+ static const IMPORT_LIBRARY_PROJECT1 =
+ const FixKind('IMPORT_LIBRARY_PROJECT1', 47, "Import library '{0}'");
+ static const IMPORT_LIBRARY_PROJECT2 =
+ const FixKind('IMPORT_LIBRARY_PROJECT2', 48, "Import library '{0}'");
+ static const IMPORT_LIBRARY_PROJECT3 =
+ const FixKind('IMPORT_LIBRARY_PROJECT3', 49, "Import library '{0}'");
static const IMPORT_LIBRARY_SDK =
const FixKind('IMPORT_LIBRARY_SDK', 49, "Import library '{0}'");
static const IMPORT_LIBRARY_SHOW =
« no previous file with comments | « no previous file | pkg/analysis_server/lib/src/services/correction/fix_internal.dart » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698