Fix array literal indentation in foreach (#554)
This commit is contained in:
parent
036da91542
commit
d862d8aef1
|
@ -15,7 +15,7 @@ import dfmt.indentation;
|
||||||
import dfmt.tokens;
|
import dfmt.tokens;
|
||||||
import dfmt.wrapping;
|
import dfmt.wrapping;
|
||||||
import std.array;
|
import std.array;
|
||||||
import std.algorithm.comparison : among;
|
import std.algorithm.comparison : among, max;
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Formats the code contained in `buffer` into `output`.
|
* Formats the code contained in `buffer` into `output`.
|
||||||
|
@ -196,6 +196,11 @@ private:
|
||||||
/// True if the next "else" should be formatted as a single line
|
/// True if the next "else" should be formatted as a single line
|
||||||
bool inlineElse;
|
bool inlineElse;
|
||||||
|
|
||||||
|
/// Tracks paren depth on a single line. This information can be used to
|
||||||
|
/// indent array literals inside parens, since arrays are indented only once
|
||||||
|
/// and paren indentation is ignored.line breaks and "[" reset the counter.
|
||||||
|
int parenDepthOnLine;
|
||||||
|
|
||||||
void formatStep()
|
void formatStep()
|
||||||
{
|
{
|
||||||
import std.range : assumeSorted;
|
import std.range : assumeSorted;
|
||||||
|
@ -597,6 +602,7 @@ private:
|
||||||
writeToken();
|
writeToken();
|
||||||
if (p == tok!"(")
|
if (p == tok!"(")
|
||||||
{
|
{
|
||||||
|
++parenDepthOnLine;
|
||||||
// If the file starts with an open paren, just give up. This isn't
|
// If the file starts with an open paren, just give up. This isn't
|
||||||
// valid D code.
|
// valid D code.
|
||||||
if (index < 2)
|
if (index < 2)
|
||||||
|
@ -616,9 +622,7 @@ private:
|
||||||
|
|
||||||
if (arrayInitializerStart && isMultilineAt(index - 1))
|
if (arrayInitializerStart && isMultilineAt(index - 1))
|
||||||
{
|
{
|
||||||
if (peekBack2Is(tok!"(")) {
|
revertParenIndentation();
|
||||||
indents.pop();
|
|
||||||
}
|
|
||||||
|
|
||||||
// Use the close bracket as the indent token to distinguish
|
// Use the close bracket as the indent token to distinguish
|
||||||
// the array initialiazer from an array index in the newline
|
// the array initialiazer from an array index in the newline
|
||||||
|
@ -642,9 +646,7 @@ private:
|
||||||
}
|
}
|
||||||
else if (p == tok!"[" && config.dfmt_keep_line_breaks == OptionalBoolean.t)
|
else if (p == tok!"[" && config.dfmt_keep_line_breaks == OptionalBoolean.t)
|
||||||
{
|
{
|
||||||
if (peekBack2Is(tok!"(")) {
|
revertParenIndentation();
|
||||||
indents.pop();
|
|
||||||
}
|
|
||||||
IndentStack.Details detail;
|
IndentStack.Details detail;
|
||||||
|
|
||||||
detail.wrap = false;
|
detail.wrap = false;
|
||||||
|
@ -697,6 +699,19 @@ private:
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
void revertParenIndentation()
|
||||||
|
{
|
||||||
|
if (parenDepthOnLine)
|
||||||
|
{
|
||||||
|
foreach (i; 0 .. parenDepthOnLine)
|
||||||
|
{
|
||||||
|
indents.pop();
|
||||||
|
}
|
||||||
|
indents.popTempIndents();
|
||||||
|
}
|
||||||
|
parenDepthOnLine = 0;
|
||||||
|
}
|
||||||
|
|
||||||
void formatRightParen()
|
void formatRightParen()
|
||||||
in
|
in
|
||||||
{
|
{
|
||||||
|
@ -704,6 +719,7 @@ private:
|
||||||
}
|
}
|
||||||
do
|
do
|
||||||
{
|
{
|
||||||
|
parenDepthOnLine = max(parenDepthOnLine - 1, 0);
|
||||||
parenDepth--;
|
parenDepth--;
|
||||||
indents.popWrapIndents();
|
indents.popWrapIndents();
|
||||||
while (indents.topIsOneOf(tok!"!", tok!")"))
|
while (indents.topIsOneOf(tok!"!", tok!")"))
|
||||||
|
@ -1665,6 +1681,8 @@ private:
|
||||||
import std.algorithm : max, canFind;
|
import std.algorithm : max, canFind;
|
||||||
import dfmt.editorconfig : OptionalBoolean;
|
import dfmt.editorconfig : OptionalBoolean;
|
||||||
|
|
||||||
|
parenDepthOnLine = 0;
|
||||||
|
|
||||||
if (currentIs(tok!"comment") && index > 0 && current.line == tokenEndLine(tokens[index - 1]))
|
if (currentIs(tok!"comment") && index > 0 && current.line == tokenEndLine(tokens[index - 1]))
|
||||||
return;
|
return;
|
||||||
|
|
||||||
|
|
|
@ -0,0 +1,54 @@
|
||||||
|
static foreach (x; [
|
||||||
|
1,
|
||||||
|
2,
|
||||||
|
3,
|
||||||
|
])
|
||||||
|
{
|
||||||
|
}
|
||||||
|
|
||||||
|
static foreach_reverse (x; [
|
||||||
|
1,
|
||||||
|
2,
|
||||||
|
3,
|
||||||
|
])
|
||||||
|
{
|
||||||
|
}
|
||||||
|
|
||||||
|
void f()
|
||||||
|
{
|
||||||
|
foreach (x; [
|
||||||
|
1,
|
||||||
|
2,
|
||||||
|
3,
|
||||||
|
])
|
||||||
|
{
|
||||||
|
}
|
||||||
|
foreach_reverse (x; [
|
||||||
|
1,
|
||||||
|
2,
|
||||||
|
3,
|
||||||
|
])
|
||||||
|
{
|
||||||
|
}
|
||||||
|
|
||||||
|
if (!SymbolTool.instance.workspacesFilesUris.canFind!sameFile(uri))
|
||||||
|
{
|
||||||
|
send(TextDocument.publishDiagnostics, new PublishDiagnosticsParams(uri, [
|
||||||
|
]));
|
||||||
|
}
|
||||||
|
|
||||||
|
foreach (x; map([
|
||||||
|
1,
|
||||||
|
2,
|
||||||
|
3,
|
||||||
|
]))
|
||||||
|
{
|
||||||
|
}
|
||||||
|
foreach (x; foo!(map!([
|
||||||
|
1,
|
||||||
|
2,
|
||||||
|
3,
|
||||||
|
])))
|
||||||
|
{
|
||||||
|
}
|
||||||
|
}
|
|
@ -0,0 +1 @@
|
||||||
|
--keep_line_breaks true
|
|
@ -0,0 +1,53 @@
|
||||||
|
static foreach (x; [
|
||||||
|
1,
|
||||||
|
2,
|
||||||
|
3,
|
||||||
|
])
|
||||||
|
{
|
||||||
|
}
|
||||||
|
|
||||||
|
static foreach_reverse (x; [
|
||||||
|
1,
|
||||||
|
2,
|
||||||
|
3,
|
||||||
|
])
|
||||||
|
{
|
||||||
|
}
|
||||||
|
|
||||||
|
void f()
|
||||||
|
{
|
||||||
|
foreach (x; [
|
||||||
|
1,
|
||||||
|
2,
|
||||||
|
3,
|
||||||
|
])
|
||||||
|
{
|
||||||
|
}
|
||||||
|
foreach_reverse (x; [
|
||||||
|
1,
|
||||||
|
2,
|
||||||
|
3,
|
||||||
|
])
|
||||||
|
{
|
||||||
|
}
|
||||||
|
|
||||||
|
if (!SymbolTool.instance.workspacesFilesUris.canFind!sameFile(uri))
|
||||||
|
{
|
||||||
|
send(TextDocument.publishDiagnostics, new PublishDiagnosticsParams(uri, []));
|
||||||
|
}
|
||||||
|
|
||||||
|
foreach (x; map([
|
||||||
|
1,
|
||||||
|
2,
|
||||||
|
3,
|
||||||
|
]))
|
||||||
|
{
|
||||||
|
}
|
||||||
|
foreach (x; foo!(map!([
|
||||||
|
1,
|
||||||
|
2,
|
||||||
|
3,
|
||||||
|
])))
|
||||||
|
{
|
||||||
|
}
|
||||||
|
}
|
|
@ -0,0 +1,47 @@
|
||||||
|
static foreach (x; [
|
||||||
|
1,
|
||||||
|
2,
|
||||||
|
3,
|
||||||
|
]) {
|
||||||
|
}
|
||||||
|
|
||||||
|
static foreach_reverse (x; [
|
||||||
|
1,
|
||||||
|
2,
|
||||||
|
3,
|
||||||
|
]) {
|
||||||
|
}
|
||||||
|
|
||||||
|
void f()
|
||||||
|
{
|
||||||
|
foreach (x; [
|
||||||
|
1,
|
||||||
|
2,
|
||||||
|
3,
|
||||||
|
]) {
|
||||||
|
}
|
||||||
|
foreach_reverse (x; [
|
||||||
|
1,
|
||||||
|
2,
|
||||||
|
3,
|
||||||
|
]) {
|
||||||
|
}
|
||||||
|
|
||||||
|
if (!SymbolTool.instance.workspacesFilesUris.canFind!sameFile(uri)) {
|
||||||
|
send(TextDocument.publishDiagnostics, new PublishDiagnosticsParams(uri, [
|
||||||
|
]));
|
||||||
|
}
|
||||||
|
|
||||||
|
foreach (x; map([
|
||||||
|
1,
|
||||||
|
2,
|
||||||
|
3,
|
||||||
|
])) {
|
||||||
|
}
|
||||||
|
foreach (x; foo!(map!([
|
||||||
|
1,
|
||||||
|
2,
|
||||||
|
3,
|
||||||
|
]))) {
|
||||||
|
}
|
||||||
|
}
|
|
@ -0,0 +1,46 @@
|
||||||
|
static foreach (x; [
|
||||||
|
1,
|
||||||
|
2,
|
||||||
|
3,
|
||||||
|
]) {
|
||||||
|
}
|
||||||
|
|
||||||
|
static foreach_reverse (x; [
|
||||||
|
1,
|
||||||
|
2,
|
||||||
|
3,
|
||||||
|
]) {
|
||||||
|
}
|
||||||
|
|
||||||
|
void f() {
|
||||||
|
foreach (x; [
|
||||||
|
1,
|
||||||
|
2,
|
||||||
|
3,
|
||||||
|
]) {
|
||||||
|
}
|
||||||
|
foreach_reverse (x; [
|
||||||
|
1,
|
||||||
|
2,
|
||||||
|
3,
|
||||||
|
]) {
|
||||||
|
}
|
||||||
|
|
||||||
|
if (!SymbolTool.instance.workspacesFilesUris.canFind!sameFile(uri)) {
|
||||||
|
send(TextDocument.publishDiagnostics, new PublishDiagnosticsParams(uri, [
|
||||||
|
]));
|
||||||
|
}
|
||||||
|
|
||||||
|
foreach (x; map([
|
||||||
|
1,
|
||||||
|
2,
|
||||||
|
3,
|
||||||
|
])) {
|
||||||
|
}
|
||||||
|
foreach (x; foo!(map!([
|
||||||
|
1,
|
||||||
|
2,
|
||||||
|
3,
|
||||||
|
]))) {
|
||||||
|
}
|
||||||
|
}
|
|
@ -5,6 +5,8 @@ for braceStyle in allman otbs knr
|
||||||
do
|
do
|
||||||
for source in *.d
|
for source in *.d
|
||||||
do
|
do
|
||||||
|
test "$(basename $source '.d')" = 'test' && continue
|
||||||
|
|
||||||
echo "${source}.ref" "${braceStyle}/${source}.out"
|
echo "${source}.ref" "${braceStyle}/${source}.out"
|
||||||
argsFile=$(basename "${source}" .d).args
|
argsFile=$(basename "${source}" .d).args
|
||||||
if [ -e "${argsFile}" ]; then
|
if [ -e "${argsFile}" ]; then
|
||||||
|
|
Loading…
Reference in New Issue