diff --git a/src/dfmt/formatter.d b/src/dfmt/formatter.d index a8c2700..abfaf84 100644 --- a/src/dfmt/formatter.d +++ b/src/dfmt/formatter.d @@ -1022,11 +1022,13 @@ private: } break; } - else if (!astInformation.unaryLocations.canFindIndex(current.index)) - goto binary; - else + else if (astInformation.unaryLocations.canFindIndex(current.index)) + { writeToken(); - break; + break; + } + regenLineBreakHintsIfNecessary(index); + goto binary; case tok!"~": if (peekIs(tok!"this")) { @@ -1048,6 +1050,7 @@ private: writeToken(); break; } + regenLineBreakHintsIfNecessary(index); goto binary; case tok!"[": case tok!"(": diff --git a/src/dfmt/tokens.d b/src/dfmt/tokens.d index a458474..a04b32c 100644 --- a/src/dfmt/tokens.d +++ b/src/dfmt/tokens.d @@ -111,6 +111,7 @@ bool isBreakToken(IdType t) pure nothrow @safe @nogc case tok!"/": case tok!"..": case tok!"*=": + case tok!"*": case tok!"&=": case tok!"%=": case tok!"%": @@ -173,6 +174,7 @@ int breakCost(IdType p, IdType c) pure nothrow @safe @nogc case tok!"/": case tok!"..": case tok!"*=": + case tok!"*": case tok!"&=": case tok!"%=": case tok!"%": diff --git a/tests/allman/issue0226.d.ref b/tests/allman/issue0226.d.ref new file mode 100644 index 0000000..dde12ac --- /dev/null +++ b/tests/allman/issue0226.d.ref @@ -0,0 +1,15 @@ +unittest +{ + auto a = 1234567890 + 1234567890 + 1234567890 + 1234567890 + 1234567890 + + 1234567890 + 1234567890 + 1234567890 + 1234567890 + 1234567890 + + 1234567890 + 1234567890 + 1234567890 + 1234567890 + 1234567890 + + 1234567890 + 1234567890 + 1234567890; + auto a = 1234567890 - 1234567890 - 1234567890 - 1234567890 - 1234567890 + - 1234567890 - 1234567890 - 1234567890 - 1234567890 - 1234567890 + - 1234567890 - 1234567890 - 1234567890 - 1234567890 - 1234567890 + - 1234567890 - 1234567890 - 1234567890; + auto a = 1234567890 * 1234567890 * 1234567890 * 1234567890 * 1234567890 + * 1234567890 * 1234567890 * 1234567890 * 1234567890 * 1234567890 + * 1234567890 * 1234567890 * 1234567890 * 1234567890 * 1234567890 + * 1234567890 * 1234567890 * 1234567890; +} diff --git a/tests/issue0226.d b/tests/issue0226.d new file mode 100644 index 0000000..7b2701f --- /dev/null +++ b/tests/issue0226.d @@ -0,0 +1,6 @@ +unittest +{ + auto a = 1234567890 + 1234567890 + 1234567890 + 1234567890 + 1234567890 + 1234567890 + 1234567890 + 1234567890 + 1234567890 + 1234567890 + 1234567890 + 1234567890 + 1234567890 + 1234567890 + 1234567890 + 1234567890 + 1234567890 + 1234567890; + auto a = 1234567890 - 1234567890 - 1234567890 - 1234567890 - 1234567890 - 1234567890 - 1234567890 - 1234567890 - 1234567890 - 1234567890 - 1234567890 - 1234567890 - 1234567890 - 1234567890 - 1234567890 - 1234567890 - 1234567890 - 1234567890; + auto a = 1234567890 * 1234567890 * 1234567890 * 1234567890 * 1234567890 * 1234567890 * 1234567890 * 1234567890 * 1234567890 * 1234567890 * 1234567890 * 1234567890 * 1234567890 * 1234567890 * 1234567890 * 1234567890 * 1234567890 * 1234567890; +} diff --git a/tests/otbs/issue0226.d.ref b/tests/otbs/issue0226.d.ref new file mode 100644 index 0000000..3406742 --- /dev/null +++ b/tests/otbs/issue0226.d.ref @@ -0,0 +1,14 @@ +unittest { + auto a = 1234567890 + 1234567890 + 1234567890 + 1234567890 + 1234567890 + + 1234567890 + 1234567890 + 1234567890 + 1234567890 + 1234567890 + + 1234567890 + 1234567890 + 1234567890 + 1234567890 + 1234567890 + + 1234567890 + 1234567890 + 1234567890; + auto a = 1234567890 - 1234567890 - 1234567890 - 1234567890 - 1234567890 + - 1234567890 - 1234567890 - 1234567890 - 1234567890 - 1234567890 + - 1234567890 - 1234567890 - 1234567890 - 1234567890 - 1234567890 + - 1234567890 - 1234567890 - 1234567890; + auto a = 1234567890 * 1234567890 * 1234567890 * 1234567890 * 1234567890 + * 1234567890 * 1234567890 * 1234567890 * 1234567890 * 1234567890 + * 1234567890 * 1234567890 * 1234567890 * 1234567890 * 1234567890 + * 1234567890 * 1234567890 * 1234567890; +}