Merge pull request #467 from Geod24/fix-deps
Replace 'body' with 'do' merged-on-behalf-of: Sebastian Wilzbach <sebi.wilzbach@gmail.com>
This commit is contained in:
commit
399041c84f
|
@ -565,7 +565,7 @@ private:
|
|||
{
|
||||
assert(currentIs(tok!"(") || currentIs(tok!"["));
|
||||
}
|
||||
body
|
||||
do
|
||||
{
|
||||
immutable p = current.type;
|
||||
regenLineBreakHintsIfNecessary(index);
|
||||
|
@ -650,7 +650,7 @@ private:
|
|||
{
|
||||
assert(currentIs(tok!")"));
|
||||
}
|
||||
body
|
||||
do
|
||||
{
|
||||
parenDepth--;
|
||||
indents.popWrapIndents();
|
||||
|
@ -685,7 +685,7 @@ private:
|
|||
{
|
||||
assert(currentIs(tok!"]"));
|
||||
}
|
||||
body
|
||||
do
|
||||
{
|
||||
indents.popWrapIndents();
|
||||
if (indents.topIs(tok!"]"))
|
||||
|
@ -1715,7 +1715,7 @@ private:
|
|||
{
|
||||
assert(currentIs(tok!"("), str(current.type));
|
||||
}
|
||||
body
|
||||
do
|
||||
{
|
||||
immutable int depth = parenDepth;
|
||||
immutable int startingNiBraceDepth = niBraceDepth;
|
||||
|
@ -1860,7 +1860,7 @@ const pure @safe @nogc:
|
|||
{
|
||||
assert(index < tokens.length);
|
||||
}
|
||||
body
|
||||
do
|
||||
{
|
||||
return tokens[index];
|
||||
}
|
||||
|
|
|
@ -12,7 +12,7 @@ import std.path : filenameCharCmp, isDirSeparator;
|
|||
// * changes meaning to match all characters except '/'
|
||||
// ** added to take over the old meaning of *
|
||||
bool globMatchEditorConfig(CaseSensitive cs = CaseSensitive.osDefault, C, Range)(
|
||||
Range path, const(C)[] pattern) @safe pure nothrow
|
||||
Range path, const(C)[] pattern) @safe pure nothrow
|
||||
if (isForwardRange!Range && isSomeChar!(ElementEncodingType!Range)
|
||||
&& isSomeChar!C && is(Unqual!C == Unqual!(ElementEncodingType!Range)))
|
||||
in
|
||||
|
@ -23,7 +23,7 @@ in
|
|||
assert(balancedParens(pattern, '[', ']', 0));
|
||||
assert(balancedParens(pattern, '{', '}', 0));
|
||||
}
|
||||
body
|
||||
do
|
||||
{
|
||||
alias RC = Unqual!(ElementEncodingType!Range);
|
||||
|
||||
|
|
|
@ -15,7 +15,7 @@ in
|
|||
{
|
||||
assert(tokens[0].type == tok!"(");
|
||||
}
|
||||
body
|
||||
do
|
||||
{
|
||||
uint length = 0;
|
||||
size_t i = 1;
|
||||
|
|
Loading…
Reference in New Issue