This commit is contained in:
Hackerpilot 2015-03-24 14:48:04 -07:00
parent f83504193f
commit e3893d46ec
4 changed files with 32 additions and 1 deletions

View File

@ -968,7 +968,7 @@ private:
indents.popWrapIndents();
indents.push(tok!"{");
if (index == 1 || peekBackIsOneOf(true, tok!":", tok!"{",
tok!"}", tok!")", tok!";"))
tok!"}", tok!")", tok!";", tok!"identifier") || peekBackIsKeyword())
{
indentLevel = indents.indentSize - 1;
}
@ -1209,6 +1209,21 @@ const pure @safe @nogc:
return peekImplementation(tokenType, -1, ignoreComments);
}
bool peekBackIsKeyword(bool ignoreComments = true)
{
if (index == 0)
return false;
auto i = index - 1;
if (ignoreComments)
while (tokens[i].type == tok!"comment")
{
if (i == 0)
return false;
i--;
}
return isKeyword(tokens[i].type);
}
bool peekBackIsOneOf(bool ignoreComments, IdType[] tokenTypes...)
{
if (index == 0)

View File

@ -0,0 +1,7 @@
struct State
{
this(uint breaks, const Token[] tokens, immutable short[] depths,
const Config* config, int currentLineLength, int indentLevel) pure @safe
{
}
}

4
tests/issue0123.d Normal file
View File

@ -0,0 +1,4 @@
struct State
{
this(uint breaks, const Token[] tokens, immutable short[] depths, const Config* config, int currentLineLength, int indentLevel) pure @safe {}
}

View File

@ -0,0 +1,5 @@
struct State {
this(uint breaks, const Token[] tokens, immutable short[] depths,
const Config* config, int currentLineLength, int indentLevel) pure @safe {
}
}