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

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

Issue 2138843002: 'Import library' fixes should use the same 'addLibraryImports' implementation as the fixes where im… (Closed) Base URL: git@github.com:dart-lang/sdk.git@master
Patch Set: Created 4 years, 5 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/util.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_internal.dart
diff --git a/pkg/analysis_server/lib/src/services/correction/fix_internal.dart b/pkg/analysis_server/lib/src/services/correction/fix_internal.dart
index 763642ac103a87a4eef13fb578d5a8a4ce149bf7..af6b309cce504468313d2931e1ec14968189c879 100644
--- a/pkg/analysis_server/lib/src/services/correction/fix_internal.dart
+++ b/pkg/analysis_server/lib/src/services/correction/fix_internal.dart
@@ -371,8 +371,8 @@ class FixProcessor {
doSourceChange_addElementEdit(change, target, edit);
}
- void _addFix(FixKind kind, List args) {
- if (change.edits.isEmpty) {
+ void _addFix(FixKind kind, List args, {bool importsOnly: false}) {
+ if (change.edits.isEmpty && !importsOnly) {
return;
}
// configure Change
@@ -1427,40 +1427,11 @@ class FixProcessor {
_addFix(DartFixKind.REPLACE_RETURN_TYPE_FUTURE, []);
}
- void _addFix_importLibrary(FixKind kind, String importPath) {
- CompilationUnitElement libraryUnitElement =
- unitLibraryElement.definingCompilationUnit;
- CompilationUnit libraryUnit = getParsedUnit(libraryUnitElement);
- // prepare new import location
- int offset = 0;
- String prefix;
- String suffix;
- {
- // if no directives
- prefix = '';
- suffix = eol;
- CorrectionUtils libraryUtils = new CorrectionUtils(libraryUnit);
- // after last directive in library
- for (Directive directive in libraryUnit.directives) {
- if (directive is LibraryDirective || directive is ImportDirective) {
- offset = directive.end;
- prefix = eol;
- suffix = '';
- }
- }
- // if still beginning of file, skip shebang and line comments
- if (offset == 0) {
- CorrectionUtils_InsertDesc desc = libraryUtils.getInsertDescTop();
- offset = desc.offset;
- prefix = desc.prefix;
- suffix = '${desc.suffix}$eol';
- }
- }
- // insert new import
- String importSource = "${prefix}import '$importPath';$suffix";
- _addInsertEdit(offset, importSource, libraryUnitElement);
- // add proposal
- _addFix(kind, [importPath]);
+ void _addFix_importLibrary(FixKind kind, LibraryElement libraryElement) {
+ librariesToImport.add(libraryElement);
+ Source librarySource = libraryElement.source;
+ String libraryUri = getLibrarySourceUri(unitLibraryElement, librarySource);
+ _addFix(kind, [libraryUri], importsOnly: true);
}
void _addFix_importLibrary_withElement(String name, ElementKind kind) {
@@ -1547,7 +1518,7 @@ class FixProcessor {
continue;
}
// add import
- _addFix_importLibrary(DartFixKind.IMPORT_LIBRARY_SDK, libraryUri);
+ _addFix_importLibrary(DartFixKind.IMPORT_LIBRARY_SDK, libraryElement);
}
}
// check project libraries
@@ -1579,21 +1550,8 @@ class FixProcessor {
if (element.kind != kind) {
continue;
}
- // prepare "library" file
- String libraryFile = librarySource.fullName;
- // may be "package:" URI
- {
- String libraryPackageUri = findNonFileUri(context, libraryFile);
- if (libraryPackageUri != null) {
- _addFix_importLibrary(
- DartFixKind.IMPORT_LIBRARY_PROJECT, libraryPackageUri);
- continue;
- }
- }
- // relative URI
- String relativeFile = relative(libraryFile, from: unitLibraryFolder);
- relativeFile = split(relativeFile).join('/');
- _addFix_importLibrary(DartFixKind.IMPORT_LIBRARY_PROJECT, relativeFile);
+ _addFix_importLibrary(
+ DartFixKind.IMPORT_LIBRARY_PROJECT, libraryElement);
}
}
}
« no previous file with comments | « no previous file | pkg/analysis_server/lib/src/services/correction/util.dart » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698