Fix #123
This commit is contained in:
parent
f83504193f
commit
e3893d46ec
|
@ -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)
|
||||
|
|
|
@ -0,0 +1,7 @@
|
|||
struct State
|
||||
{
|
||||
this(uint breaks, const Token[] tokens, immutable short[] depths,
|
||||
const Config* config, int currentLineLength, int indentLevel) pure @safe
|
||||
{
|
||||
}
|
||||
}
|
|
@ -0,0 +1,4 @@
|
|||
struct State
|
||||
{
|
||||
this(uint breaks, const Token[] tokens, immutable short[] depths, const Config* config, int currentLineLength, int indentLevel) pure @safe {}
|
||||
}
|
|
@ -0,0 +1,5 @@
|
|||
struct State {
|
||||
this(uint breaks, const Token[] tokens, immutable short[] depths,
|
||||
const Config* config, int currentLineLength, int indentLevel) pure @safe {
|
||||
}
|
||||
}
|
Loading…
Reference in New Issue