fix the handling of module-scope imports

This commit is contained in:
Stefan Koch 2017-11-29 16:02:44 +01:00
parent fa856430a3
commit eb18a6f6d3
2 changed files with 6 additions and 27 deletions

View File

@ -105,34 +105,10 @@ struct ASTInformation
bool result;
const (string)[] sortKeyA = a.importStrings;
const (string)[] sortKeyB = b.importStrings;
/+
if (sortKeyA.length > 2)
{
const last = a.importStrings[$ - 1];
foreach(i,s;a.importStrings[1 .. $-1])
{
sortKeyA[i + 2] = s;
}
sortKeyA[1] = last;
}
if (sortKeyB.length > 2)
{
const last = b.importStrings[$ - 1];
foreach(i,s;sortKeyB[1 .. $-1])
{
sortKeyB[i + 2] = s;
}
sortKeyB[1] = last;
}
+/
result = sortKeyA < sortKeyB;
/*
if (moduleNameStrings.length && isCloserTo(a.importStrings, b.importStrings, moduleNameStrings)
{
}
*/
//TODO take the module-name of the module we are formatting into account
return result;
}

View File

@ -631,7 +631,10 @@ private:
{
if (importLine.importString !is null)
{
newline();
// for some reason newline() creates double
// newlines in module-scope
scopeOrdinal ? newline() : simpleNewline();
write(importLine.attribString);
write("import ");
if (importLine.renamedAs)