diff --git a/src/dfmt/formatter.d b/src/dfmt/formatter.d index 7f73ad3..f76e6e2 100644 --- a/src/dfmt/formatter.d +++ b/src/dfmt/formatter.d @@ -1053,6 +1053,14 @@ private: if (niBraceDepth > 0) niBraceDepth--; + // Account for possible function literals in this array which offset + // the previously set index (pos). Fixes issue #432. + while(astInformation.indentInfoSortedByEndLocation[pos].endLocation != + tokens[index].index) + { + pos++; + } + auto indentInfo = astInformation.indentInfoSortedByEndLocation[pos]; if (indentInfo.flags & BraceIndentInfoFlags.tempIndent) { diff --git a/tests/allman/issue0432.d.ref b/tests/allman/issue0432.d.ref new file mode 100644 index 0000000..fde6383 --- /dev/null +++ b/tests/allman/issue0432.d.ref @@ -0,0 +1,17 @@ +struct S +{ + ulong x; + ulong y; + ulong z; + ulong w; +} + +immutable int function(int) f = (x) { return x + 1111; }; + +immutable S s = { + 1111111111111111111, 1111111111111111111, 1111111111111111111, 1111111111111111111, +}; + +void main() +{ +} diff --git a/tests/issue0432.d b/tests/issue0432.d new file mode 100644 index 0000000..9140425 --- /dev/null +++ b/tests/issue0432.d @@ -0,0 +1,19 @@ +struct S +{ + ulong x; + ulong y; + ulong z; + ulong w; +} + +immutable int function(int) f = (x) { return x + 1111; }; + +immutable S s = { + 1111111111111111111, + 1111111111111111111, + 1111111111111111111, + 1111111111111111111,}; + + void main() + { + } diff --git a/tests/knr/issue0432.d.ref b/tests/knr/issue0432.d.ref new file mode 100644 index 0000000..9f54651 --- /dev/null +++ b/tests/knr/issue0432.d.ref @@ -0,0 +1,16 @@ +struct S { + ulong x; + ulong y; + ulong z; + ulong w; +} + +immutable int function(int) f = (x) { return x + 1111; }; + +immutable S s = { + 1111111111111111111, 1111111111111111111, 1111111111111111111, 1111111111111111111, +}; + +void main() +{ +} diff --git a/tests/otbs/issue0432.d.ref b/tests/otbs/issue0432.d.ref new file mode 100644 index 0000000..81cae57 --- /dev/null +++ b/tests/otbs/issue0432.d.ref @@ -0,0 +1,15 @@ +struct S { + ulong x; + ulong y; + ulong z; + ulong w; +} + +immutable int function(int) f = (x) { return x + 1111; }; + +immutable S s = { + 1111111111111111111, 1111111111111111111, 1111111111111111111, 1111111111111111111, +}; + +void main() { +}