Merge pull request #304 from kotet/issue-303
Add support for `static foreach` merged-on-behalf-of: Brian Schott <Hackerpilot@users.noreply.github.com>
This commit is contained in:
commit
4feb467dab
2
dub.json
2
dub.json
|
@ -4,6 +4,6 @@
|
|||
"targetType": "autodetect",
|
||||
"license": "BSL-1.0",
|
||||
"dependencies": {
|
||||
"libdparse": "~>0.7.1-beta.7"
|
||||
"libdparse": "~>0.7.2-alpha.3"
|
||||
}
|
||||
}
|
||||
|
|
|
@ -1 +1 @@
|
|||
Subproject commit 4229f11828a901ea5379409015f14a033e742906
|
||||
Subproject commit a2b492d8c7a84881657de85939d9c6b14f867d5b
|
|
@ -898,6 +898,20 @@ private:
|
|||
indents.push(tok!"if");
|
||||
formatLeftBrace();
|
||||
}
|
||||
else if (currentIs(tok!"{") && indents.topAre(tok!"static", tok!"foreach"))
|
||||
{
|
||||
indents.pop();
|
||||
indents.pop();
|
||||
indents.push(tok!"foreach");
|
||||
formatLeftBrace();
|
||||
}
|
||||
else if (currentIs(tok!"{") && indents.topAre(tok!"static", tok!"foreach_reverse"))
|
||||
{
|
||||
indents.pop();
|
||||
indents.pop();
|
||||
indents.push(tok!"foreach_reverse");
|
||||
formatLeftBrace();
|
||||
}
|
||||
}
|
||||
|
||||
void formatElse()
|
||||
|
|
|
@ -176,6 +176,7 @@ private:
|
|||
|
||||
int indentSize(const size_t k = size_t.max) const pure nothrow @safe @nogc
|
||||
{
|
||||
import std.algorithm : among;
|
||||
if (index == 0 || k == 0)
|
||||
return 0;
|
||||
immutable size_t j = k == size_t.max ? index : k;
|
||||
|
@ -196,8 +197,9 @@ private:
|
|||
continue;
|
||||
immutable currentIsNonWrapTemp = !isWrapIndent(arr[i])
|
||||
&& isTempIndent(arr[i]) && arr[i] != tok!")" && arr[i] != tok!"!";
|
||||
if (arr[i] == tok!"static" && (arr[i + 1] == tok!"if"
|
||||
|| arr[i + 1] == tok!"else") && (i + 2 >= index || arr[i + 2] != tok!"{"))
|
||||
if (arr[i] == tok!"static"
|
||||
&& arr[i + 1].among!(tok!"if", tok!"else", tok!"foreach", tok!"foreach_reverse")
|
||||
&& (i + 2 >= index || arr[i + 2] != tok!"{"))
|
||||
{
|
||||
parenCount = pc;
|
||||
continue;
|
||||
|
|
|
@ -0,0 +1,12 @@
|
|||
static foreach (thing; things)
|
||||
{
|
||||
pragma(msg, thing);
|
||||
}
|
||||
static foreach_reverse (thing; things)
|
||||
{
|
||||
pragma(msg, thing);
|
||||
}
|
||||
static foreach (thing; things)
|
||||
pragma(msg, thing);
|
||||
static foreach_reverse (thing; things)
|
||||
pragma(msg, thing);
|
|
@ -0,0 +1,4 @@
|
|||
static foreach (thing; things){pragma(msg,thing);}
|
||||
static foreach_reverse (thing; things){pragma(msg,thing);}
|
||||
static foreach (thing; things) pragma(msg,thing);
|
||||
static foreach_reverse (thing; things) pragma(msg,thing);
|
|
@ -0,0 +1,10 @@
|
|||
static foreach (thing; things) {
|
||||
pragma(msg, thing);
|
||||
}
|
||||
static foreach_reverse (thing; things) {
|
||||
pragma(msg, thing);
|
||||
}
|
||||
static foreach (thing; things)
|
||||
pragma(msg, thing);
|
||||
static foreach_reverse (thing; things)
|
||||
pragma(msg, thing);
|
Loading…
Reference in New Issue