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>

* libdparse 687c0ca(687c0ca)...086cf06(086cf06) (28 commits)
  > Merge pull request #242 from BBasile/issue-241
  > Merge pull request #239 from kubo39/add-isIntegerLiteral
  > Merge pull request #237 from BBasile/parse-virt-helpers
  > Merge pull request #236 from JinShil/patch-2
  > Merge pull request #235 from BBasile/upd-stdx-alloc
  (...)
This commit is contained in:
BBasile 2018-06-14 23:29:47 +02:00 committed by Stefan Koch
parent c2aea82395
commit c58e54fe71
6 changed files with 72 additions and 6 deletions

@ -1 +1 @@
Subproject commit 687c0ca751747ebe498c183da1a3ee3119d57932
Subproject commit 086cf06051bb1f33c94891ba6c39a57f164ee296

View File

@ -283,6 +283,10 @@ private:
{
formatKeyword();
}
else if (current.text == "body" && peekBackIsFunctionDeclarationEnding())
{
formatKeyword();
}
else if (isBasicType(current.type))
{
writeToken();
@ -591,8 +595,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();
@ -947,9 +953,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.
@ -1038,7 +1046,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();
@ -1827,6 +1840,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"

View File

@ -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",

View File

@ -0,0 +1,19 @@
import character.body;
void body() @nogc
in
{
}
body
{
body = null;
}
void body()
in
{
}
do
{
body = null;
}

7
tests/do_body.d Normal file
View File

@ -0,0 +1,7 @@
import character.body;
void body() @nogc
in{} body{body = null;}
void body()
in{} do{ body = null;}

15
tests/otbs/do_body.d.ref Normal file
View File

@ -0,0 +1,15 @@
import character.body;
void body() @nogc
in {
}
body {
body = null;
}
void body()
in {
}
do {
body = null;
}