Handle do as contract header and handle body as identifier (#360)
Handle `do` as contract header and handle `body` as identifier merged-on-behalf-of: Brian Schott <Hackerpilot@users.noreply.github.com>
This commit is contained in:
parent
4fd89f1f41
commit
46788e53ba
|
@ -1 +1 @@
|
|||
Subproject commit 4f3c9ed6455cc5409c2a570576f8bd994763d652
|
||||
Subproject commit 086cf06051bb1f33c94891ba6c39a57f164ee296
|
|
@ -283,6 +283,10 @@ private:
|
|||
{
|
||||
formatKeyword();
|
||||
}
|
||||
else if (current.text == "body" && peekBackIsFunctionDeclarationEnding())
|
||||
{
|
||||
formatKeyword();
|
||||
}
|
||||
else if (isBasicType(current.type))
|
||||
{
|
||||
writeToken();
|
||||
|
@ -596,8 +600,10 @@ private:
|
|||
indents.pop();
|
||||
|
||||
if (parenDepth == 0 && (peekIs(tok!"is") || peekIs(tok!"in")
|
||||
|| peekIs(tok!"out") || peekIs(tok!"body")))
|
||||
|| peekIs(tok!"out") || peekIs(tok!"do") || peekIsBody))
|
||||
{
|
||||
writeToken();
|
||||
}
|
||||
else if (peekIsLiteralOrIdent() || peekIsBasicType())
|
||||
{
|
||||
writeToken();
|
||||
|
@ -952,9 +958,11 @@ private:
|
|||
if (!currentIs(tok!"{") && !currentIs(tok!";"))
|
||||
write(" ");
|
||||
}
|
||||
else if (!currentIs(tok!"{") && !currentIs(tok!";")
|
||||
&& !currentIs(tok!"in") && !currentIs(tok!"out") && !currentIs(tok!"body"))
|
||||
else if (!currentIs(tok!"{") && !currentIs(tok!";") && !currentIs(tok!"in") &&
|
||||
!currentIs(tok!"out") && !currentIs(tok!"do") && current.text != "body")
|
||||
{
|
||||
newline();
|
||||
}
|
||||
else if (currentIs(tok!"{") && indents.topAre(tok!"static", tok!"if"))
|
||||
{
|
||||
// Hacks to format braced vs non-braced static if declarations.
|
||||
|
@ -1043,7 +1051,12 @@ private:
|
|||
if (!currentIs(tok!"{"))
|
||||
newline();
|
||||
break;
|
||||
case tok!"body":
|
||||
case tok!"identifier":
|
||||
if (current.text == "body")
|
||||
goto case tok!"do";
|
||||
else
|
||||
goto default;
|
||||
case tok!"do":
|
||||
if (!peekBackIs(tok!"}"))
|
||||
newline();
|
||||
writeToken();
|
||||
|
@ -1843,6 +1856,18 @@ const pure @safe @nogc:
|
|||
return peekImplementation(tokenType, 1, ignoreComments);
|
||||
}
|
||||
|
||||
bool peekIsBody() nothrow
|
||||
{
|
||||
return index + 1 < tokens.length && tokens[index + 1].text == "body";
|
||||
}
|
||||
|
||||
bool peekBackIsFunctionDeclarationEnding() nothrow
|
||||
{
|
||||
return peekBackIsOneOf(false, tok!")", tok!"const", tok!"immutable",
|
||||
tok!"inout", tok!"shared", tok!"@", tok!"pure", tok!"nothrow",
|
||||
tok!"return", tok!"scope");
|
||||
}
|
||||
|
||||
bool peekBackIsSlashSlash() nothrow
|
||||
{
|
||||
return index > 0 && tokens[index - 1].type == tok!"comment"
|
||||
|
|
|
@ -217,7 +217,7 @@ private string generateFixedLengthCases()
|
|||
a => format(`case tok!"%s": return %d + 1;`, a, a.length)).join("\n\t");
|
||||
|
||||
string[] identifierTokens = [
|
||||
"abstract", "alias", "align", "asm", "assert", "auto", "body", "bool",
|
||||
"abstract", "alias", "align", "asm", "assert", "auto", "bool",
|
||||
"break", "byte", "case", "cast", "catch", "cdouble", "cent", "cfloat", "char", "class",
|
||||
"const", "continue", "creal", "dchar", "debug", "default", "delegate", "delete", "deprecated",
|
||||
"do", "double", "else", "enum", "export", "extern", "false", "final", "finally", "float",
|
||||
|
|
|
@ -0,0 +1,19 @@
|
|||
import character.body;
|
||||
|
||||
void body() @nogc
|
||||
in
|
||||
{
|
||||
}
|
||||
body
|
||||
{
|
||||
body = null;
|
||||
}
|
||||
|
||||
void body()
|
||||
in
|
||||
{
|
||||
}
|
||||
do
|
||||
{
|
||||
body = null;
|
||||
}
|
|
@ -0,0 +1,7 @@
|
|||
import character.body;
|
||||
|
||||
void body() @nogc
|
||||
in{} body{body = null;}
|
||||
|
||||
void body()
|
||||
in{} do{ body = null;}
|
|
@ -0,0 +1,15 @@
|
|||
import character.body;
|
||||
|
||||
void body() @nogc
|
||||
in {
|
||||
}
|
||||
body {
|
||||
body = null;
|
||||
}
|
||||
|
||||
void body()
|
||||
in {
|
||||
}
|
||||
do {
|
||||
body = null;
|
||||
}
|
Loading…
Reference in New Issue