This commit is contained in:
Hackerpilot 2015-03-08 18:01:04 -07:00
parent 95cfcc5b0a
commit 8ab3b5c9f7
3 changed files with 64 additions and 4 deletions

View File

@ -293,7 +293,7 @@ private:
else if (isBlockHeader()) else if (isBlockHeader())
{ {
if (current.type == tok!"if") if (current.type == tok!"if")
ifIndents ~= tempIndent; ifIndents.push(tempIndent);
writeToken(); writeToken();
write(" "); write(" ");
writeParens(false); writeParens(false);
@ -464,9 +464,9 @@ private:
case tok!";": case tok!";":
if (peekIs(tok!"else")) if (peekIs(tok!"else"))
{ {
tempIndent = ifIndents[$ - 1]; tempIndent = ifIndents.top();
if (ifIndents.length) if (ifIndents.length)
ifIndents = ifIndents[0 .. $ - 1]; ifIndents.pop();
} }
else if (!peekIs(tok!"}")) else if (!peekIs(tok!"}"))
tempIndent = 0; tempIndent = 0;
@ -669,6 +669,7 @@ private:
{ {
if (current.type == tok!"{") if (current.type == tok!"{")
{ {
braceIndents.push(tempIndent);
depth++; depth++;
if (assumeSorted(astInformation.structInitStartLocations) if (assumeSorted(astInformation.structInitStartLocations)
.equalRange(tokens[index].index).length) .equalRange(tokens[index].index).length)
@ -695,6 +696,7 @@ private:
} }
else if (current.type == tok!"}") else if (current.type == tok!"}")
{ {
braceIndents.pop();
if (assumeSorted(astInformation.structInitEndLocations) if (assumeSorted(astInformation.structInitEndLocations)
.equalRange(tokens[index].index).length) .equalRange(tokens[index].index).length)
{ {
@ -1071,7 +1073,10 @@ private:
if (hasCurrent) if (hasCurrent)
{ {
if (current.type == tok!"}") if (current.type == tok!"}")
{
tempIndent = braceIndents.top();
indentLevel--; indentLevel--;
}
else if ((!assumeSorted(astInformation.attributeDeclarationLines) else if ((!assumeSorted(astInformation.attributeDeclarationLines)
.equalRange(current.line).empty) || (current.type == tok!"identifier" .equalRange(current.line).empty) || (current.type == tok!"identifier"
&& peekIs(tok!":") && !isBlockHeader(2))) && peekIs(tok!":") && !isBlockHeader(2)))
@ -1139,7 +1144,8 @@ private:
size_t[] linebreakHints; size_t[] linebreakHints;
int[] ifIndents; FixedStack ifIndents;
FixedStack braceIndents;
/// Configuration /// Configuration
FormatterConfig* config; FormatterConfig* config;
@ -1652,6 +1658,34 @@ State[] validMoves(const Token[] tokens, ref const State current,
return states; return states;
} }
struct FixedStack
{
void push(int i)
{
index = index == 255 ? index : index + 1;
arr[index] = i;
}
void pop()
{
index = index == 0 ? index : index - 1;
}
int top()
{
return arr[index];
}
size_t length()
{
return index;
}
private:
size_t index;
int[256] arr;
}
unittest unittest
{ {
import std.string : format; import std.string : format;

13
tests/issue0074.d Normal file
View File

@ -0,0 +1,13 @@
@property bool isFunctionType()
{
with (CXTypeKind)
return kind == CXType_FunctionNoProto || kind == CXType_FunctionProto
|| // FIXME: This "hack" shouldn't be needed.
func.resultType.isValid;
}
@property bool isFunctionPointerType()
{
with (CXTypeKind)
return kind == CXType_Pointer && pointeeType.isFunctionType;
}

13
tests/issue0074.d.ref Normal file
View File

@ -0,0 +1,13 @@
@property bool isFunctionType()
{
with (CXTypeKind)
return kind == CXType_FunctionNoProto || kind == CXType_FunctionProto
|| // FIXME: This "hack" shouldn't be needed.
func.resultType.isValid;
}
@property bool isFunctionPointerType()
{
with (CXTypeKind)
return kind == CXType_Pointer && pointeeType.isFunctionType;
}