Fix #313, and implement a better fix for #314

This commit is contained in:
Hackerpilot 2018-02-02 04:48:57 -08:00
parent 19a869377a
commit a8ac400830
7 changed files with 65 additions and 19 deletions

View File

@ -794,7 +794,6 @@ private:
write(" "); write(" ");
writeToken(); writeToken();
} }
indents.push(tok!"{"); indents.push(tok!"{");
if (!currentIs(tok!"{")) if (!currentIs(tok!"{"))
newline(); newline();
@ -841,8 +840,11 @@ private:
justAddedExtraNewline = true; justAddedExtraNewline = true;
} }
if (config.dfmt_brace_style == BraceStyle.otbs if (config.dfmt_brace_style == BraceStyle.otbs
&& peekIs(tok!"else") && !indents.topAre(tok!"static", tok!"if") && ((peekIs(tok!"else")
&& !indents.topIs(tok!"foreach")) && !indents.topAre(tok!"static", tok!"if")
&& !indents.topIs(tok!"foreach") && !indents.topIs(tok!"for")
&& !indents.topIs(tok!"while") && !indents.topIs(tok!"do"))
|| peekIs(tok!"catch") || peekIs(tok!"finally")))
{ {
write(" "); write(" ");
index++; index++;
@ -853,7 +855,7 @@ private:
&& !peekIs(tok!";") && !peekIs(tok!"{")) && !peekIs(tok!";") && !peekIs(tok!"{"))
{ {
index++; index++;
if (indents.topIsOneOf(tok!"static", tok!"foreach")) if (indents.topIs(tok!"static"))
indents.pop(); indents.pop();
newline(); newline();
} }
@ -955,6 +957,9 @@ private:
} }
else if (!currentIs(tok!"{") && !currentIs(tok!"comment")) else if (!currentIs(tok!"{") && !currentIs(tok!"comment"))
{ {
//indents.dump();
while (indents.topIsOneOf(tok!"foreach", tok!"for", tok!"while"))
indents.pop();
if (indents.topIsOneOf(tok!"if", tok!"version")) if (indents.topIsOneOf(tok!"if", tok!"version"))
indents.pop(); indents.pop();
indents.push(tok!"else"); indents.push(tok!"else");
@ -993,14 +998,11 @@ private:
write(" "); write(" ");
break; break;
case tok!"try": case tok!"try":
if (peekIs(tok!"{")) case tok!"finally":
writeToken(); indents.push(current.type);
else writeToken();
{ if (!currentIs(tok!"{"))
writeToken();
indents.push(tok!"try");
newline(); newline();
}
break; break;
case tok!"body": case tok!"body":
if (!peekBackIs(tok!"}")) if (!peekBackIs(tok!"}"))
@ -1430,7 +1432,11 @@ private:
indentLevel = indents.indentToMostRecent(tok!"{"); indentLevel = indents.indentToMostRecent(tok!"{");
indents.pop(); indents.pop();
} }
while (sBraceDepth == 0 && indents.topIsTemp() if (indents.topIsOneOf(tok!"try", tok!"catch"))
{
indents.pop();
}
else while (sBraceDepth == 0 && indents.topIsTemp()
&& ((!indents.topIsOneOf(tok!"else", tok!"if", && ((!indents.topIsOneOf(tok!"else", tok!"if",
tok!"static", tok!"version")) || !peekIs(tok!"else"))) tok!"static", tok!"version")) || !peekIs(tok!"else")))
{ {
@ -1461,6 +1467,12 @@ private:
indentLevel = indents.indentLevel; indentLevel = indents.indentLevel;
} }
} }
else if (currentIs(tok!"catch") || currentIs(tok!"finally"))
{
while (indents.topIsOneOf(tok!"catch", tok!"try"))
indents.pop();
indentLevel = indents.indentLevel;
}
else else
{ {
if (indents.topIsTemp() && (peekBackIsOneOf(true, tok!"}", if (indents.topIsTemp() && (peekBackIsOneOf(true, tok!"}",

View File

@ -162,13 +162,13 @@ struct IndentStack
/** /**
* Dumps the current state of the indentation stack to `stderr`. Used for debugging. * Dumps the current state of the indentation stack to `stderr`. Used for debugging.
*/ */
void dump() void dump(string file = __FILE__, uint line = __LINE__)
{ {
import std.stdio : stderr;
import dparse.lexer : str; import dparse.lexer : str;
import std.algorithm.iteration : map; import std.algorithm.iteration : map;
import std.stdio : stderr;
stderr.writefln("\033[31m%(%s %)\033[0m", arr[0 .. index].map!(a => str(a))); stderr.writefln("\033[31m%s:%d %(%s %)\033[0m", file, line, arr[0 .. index].map!(a => str(a)));
} }
private: private:

View File

@ -0,0 +1,20 @@
void main()
{
foreach (v; a)
try
{
foo();
}
catch (Exception e)
{
bar();
}
catch (Exception e)
{
bar();
}
finally
{
}
stuff();
}

4
tests/issue0313.d Normal file
View File

@ -0,0 +1,4 @@
void main()
{
foreach (v; a) try { foo(); } catch (Exception e) { bar(); } catch (Exception e) { bar(); } finally {} stuff();
}

View File

@ -16,8 +16,7 @@ void foo() {
foreach (immutable i; 0 .. 2) { foreach (immutable i; 0 .. 2) {
try { try {
i.bar; i.bar;
} } catch (U0) {
catch (U0) {
"Function foo caught exception U0".writeln; "Function foo caught exception U0".writeln;
} }
} }

View File

@ -12,8 +12,7 @@ void main() {
Nullable!int answer; Nullable!int answer;
try { try {
answer = txt.to!int; answer = txt.to!int;
} } catch (ConvException e) {
catch (ConvException e) {
writefln(" I don't understand your input '%s'", txt); writefln(" I don't understand your input '%s'", txt);
continue; continue;
} }

View File

@ -0,0 +1,12 @@
void main() {
foreach (v; a)
try {
foo();
} catch (Exception e) {
bar();
} catch (Exception e) {
bar();
} finally {
}
stuff();
}