Fix #223
This commit is contained in:
parent
08c2d0c5e8
commit
ee8fcd41f4
|
@ -493,6 +493,9 @@ private:
|
||||||
writeToken();
|
writeToken();
|
||||||
if (p == tok!"(")
|
if (p == tok!"(")
|
||||||
{
|
{
|
||||||
|
if (isBlockHeaderToken(tokens[index - 2].type))
|
||||||
|
indents.push(tok!")");
|
||||||
|
else
|
||||||
indents.push(p);
|
indents.push(p);
|
||||||
spaceAfterParens = true;
|
spaceAfterParens = true;
|
||||||
parenDepth++;
|
parenDepth++;
|
||||||
|
@ -527,9 +530,9 @@ private:
|
||||||
body
|
body
|
||||||
{
|
{
|
||||||
parenDepth--;
|
parenDepth--;
|
||||||
if (parenDepth == 0 && indents.topIs(tok!"!"))
|
|
||||||
indents.pop();
|
|
||||||
indents.popWrapIndents();
|
indents.popWrapIndents();
|
||||||
|
while (indents.topIsOneOf(tok!"!", tok!")"))
|
||||||
|
indents.pop();
|
||||||
if (indents.topIs(tok!"("))
|
if (indents.topIs(tok!"("))
|
||||||
indents.pop();
|
indents.pop();
|
||||||
|
|
||||||
|
|
|
@ -11,9 +11,9 @@ import std.path : filenameCharCmp, isDirSeparator;
|
||||||
// * changes meaning to match all characters except '/'
|
// * changes meaning to match all characters except '/'
|
||||||
// ** added to take over the old meaning of *
|
// ** added to take over the old meaning of *
|
||||||
bool globMatchEditorConfig(CaseSensitive cs = CaseSensitive.osDefault, C, Range)(
|
bool globMatchEditorConfig(CaseSensitive cs = CaseSensitive.osDefault, C, Range)(
|
||||||
Range path, const(C)[] pattern) @safe pure nothrow if (isForwardRange!Range
|
Range path, const(C)[] pattern) @safe pure nothrow
|
||||||
&& isSomeChar!(ElementEncodingType!Range) && isSomeChar!C
|
if (isForwardRange!Range && isSomeChar!(ElementEncodingType!Range)
|
||||||
&& is(Unqual!C == Unqual!(ElementEncodingType!Range)))
|
&& isSomeChar!C && is(Unqual!C == Unqual!(ElementEncodingType!Range)))
|
||||||
in
|
in
|
||||||
{
|
{
|
||||||
// Verify that pattern[] is valid
|
// Verify that pattern[] is valid
|
||||||
|
|
|
@ -13,7 +13,7 @@ import dparse.lexer;
|
||||||
bool isWrapIndent(IdType type) pure nothrow @nogc @safe
|
bool isWrapIndent(IdType type) pure nothrow @nogc @safe
|
||||||
{
|
{
|
||||||
return type != tok!"{" && type != tok!"case" && type != tok!"@"
|
return type != tok!"{" && type != tok!"case" && type != tok!"@"
|
||||||
&& type != tok!"]" && type != tok!"(" && isOperator(type);
|
&& type != tok!"]" && type != tok!"(" && type != tok!")" && isOperator(type);
|
||||||
}
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
|
@ -21,7 +21,7 @@ bool isWrapIndent(IdType type) pure nothrow @nogc @safe
|
||||||
*/
|
*/
|
||||||
bool isTempIndent(IdType type) pure nothrow @nogc @safe
|
bool isTempIndent(IdType type) pure nothrow @nogc @safe
|
||||||
{
|
{
|
||||||
return type != tok!"{" && type != tok!"case" && type != tok!"@";
|
return type != tok!")" && type != tok!"{" && type != tok!"case" && type != tok!"@";
|
||||||
}
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
|
@ -175,29 +175,29 @@ private:
|
||||||
int parenCount;
|
int parenCount;
|
||||||
foreach (i; 0 .. j)
|
foreach (i; 0 .. j)
|
||||||
{
|
{
|
||||||
|
immutable int pc = (arr[i] == tok!"!" || arr[i] == tok!"(" || arr[i] == tok!")") ? parenCount + 1
|
||||||
|
: parenCount;
|
||||||
|
if ((isWrapIndent(arr[i]) || arr[i] == tok!"(") && parenCount > 1)
|
||||||
|
{
|
||||||
|
parenCount = pc;
|
||||||
|
continue;
|
||||||
|
}
|
||||||
if (i + 1 < index)
|
if (i + 1 < index)
|
||||||
{
|
{
|
||||||
if (arr[i] == tok!"(")
|
if (arr[i] == tok!"]")
|
||||||
parenCount++;
|
|
||||||
else if (arr[i] == tok!"]")
|
|
||||||
continue;
|
continue;
|
||||||
else
|
immutable currentIsNonWrapTemp = !isWrapIndent(arr[i])
|
||||||
|
&& isTempIndent(arr[i]) && arr[i] != tok!")" && arr[i] != tok!"!";
|
||||||
|
if (currentIsNonWrapTemp && (arr[i + 1] == tok!"switch"
|
||||||
|
|| arr[i + 1] == tok!"{" || arr[i + 1] == tok!")"))
|
||||||
{
|
{
|
||||||
if (isWrapIndent(arr[i]) && parenCount > 0)
|
parenCount = pc;
|
||||||
{
|
|
||||||
parenCount = 0;
|
|
||||||
continue;
|
continue;
|
||||||
}
|
}
|
||||||
parenCount = 0;
|
|
||||||
}
|
|
||||||
immutable currentIsNonWrapTemp = !isWrapIndent(arr[i]) && isTempIndent(arr[i]);
|
|
||||||
immutable nextIsParenOrSwitch = arr[i + 1] == tok!"("
|
|
||||||
|| arr[i + 1] == tok!"switch" || arr[i + 1] == tok!"{";
|
|
||||||
if (currentIsNonWrapTemp && nextIsParenOrSwitch)
|
|
||||||
continue;
|
|
||||||
}
|
}
|
||||||
if (arr[i] == tok!"!")
|
if (arr[i] == tok!"!")
|
||||||
size++;
|
size++;
|
||||||
|
parenCount = pc;
|
||||||
size++;
|
size++;
|
||||||
}
|
}
|
||||||
return size;
|
return size;
|
||||||
|
|
|
@ -153,8 +153,7 @@ size_t[] chooseLineBreakTokens(size_t index, const Token[] tokens,
|
||||||
return genRetVal(current.breaks, index);
|
return genRetVal(current.breaks, index);
|
||||||
}
|
}
|
||||||
validMoves!(typeof(open))(open, tokens[0 .. tokensEnd],
|
validMoves!(typeof(open))(open, tokens[0 .. tokensEnd],
|
||||||
depths[0 .. tokensEnd], current.breaks, config, currentLineLength,
|
depths[0 .. tokensEnd], current.breaks, config, currentLineLength, indentLevel);
|
||||||
indentLevel);
|
|
||||||
}
|
}
|
||||||
if (open.empty)
|
if (open.empty)
|
||||||
return genRetVal(lowest.breaks, index);
|
return genRetVal(lowest.breaks, index);
|
||||||
|
|
|
@ -0,0 +1,8 @@
|
||||||
|
unittest
|
||||||
|
{
|
||||||
|
if (info > 0)
|
||||||
|
throw new ExceptionWithLongName(
|
||||||
|
std.string.format(
|
||||||
|
"During the LU factorization, it was found that the " ~ "%sth diagonal value is exactly zero.",
|
||||||
|
info), file, line);
|
||||||
|
}
|
|
@ -0,0 +1,8 @@
|
||||||
|
unittest
|
||||||
|
{
|
||||||
|
if (info > 0)
|
||||||
|
throw new ExceptionWithLongName(
|
||||||
|
std.string.format(
|
||||||
|
"During the LU factorization, it was found that the " ~ "%sth diagonal value is exactly zero.",
|
||||||
|
info), file, line);
|
||||||
|
}
|
|
@ -0,0 +1,7 @@
|
||||||
|
unittest {
|
||||||
|
if (info > 0)
|
||||||
|
throw new ExceptionWithLongName(
|
||||||
|
std.string.format(
|
||||||
|
"During the LU factorization, it was found that the " ~ "%sth diagonal value is exactly zero.",
|
||||||
|
info), file, line);
|
||||||
|
}
|
Loading…
Reference in New Issue