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(" ");
writeToken();
}
indents.push(tok!"{");
if (!currentIs(tok!"{"))
newline();
@ -841,8 +840,11 @@ private:
justAddedExtraNewline = true;
}
if (config.dfmt_brace_style == BraceStyle.otbs
&& peekIs(tok!"else") && !indents.topAre(tok!"static", tok!"if")
&& !indents.topIs(tok!"foreach"))
&& ((peekIs(tok!"else")
&& !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(" ");
index++;
@ -853,7 +855,7 @@ private:
&& !peekIs(tok!";") && !peekIs(tok!"{"))
{
index++;
if (indents.topIsOneOf(tok!"static", tok!"foreach"))
if (indents.topIs(tok!"static"))
indents.pop();
newline();
}
@ -955,6 +957,9 @@ private:
}
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"))
indents.pop();
indents.push(tok!"else");
@ -993,14 +998,11 @@ private:
write(" ");
break;
case tok!"try":
if (peekIs(tok!"{"))
case tok!"finally":
indents.push(current.type);
writeToken();
else
{
writeToken();
indents.push(tok!"try");
if (!currentIs(tok!"{"))
newline();
}
break;
case tok!"body":
if (!peekBackIs(tok!"}"))
@ -1430,7 +1432,11 @@ private:
indentLevel = indents.indentToMostRecent(tok!"{");
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",
tok!"static", tok!"version")) || !peekIs(tok!"else")))
{
@ -1461,6 +1467,12 @@ private:
indentLevel = indents.indentLevel;
}
}
else if (currentIs(tok!"catch") || currentIs(tok!"finally"))
{
while (indents.topIsOneOf(tok!"catch", tok!"try"))
indents.pop();
indentLevel = indents.indentLevel;
}
else
{
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.
*/
void dump()
void dump(string file = __FILE__, uint line = __LINE__)
{
import std.stdio : stderr;
import dparse.lexer : str;
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:

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) {
try {
i.bar;
}
catch (U0) {
} catch (U0) {
"Function foo caught exception U0".writeln;
}
}

View File

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

View File

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