parent
0e5615e13e
commit
e8bd41c70d
|
@ -1192,11 +1192,13 @@ private:
|
|||
writeParens(config.dfmt_space_after_cast == OptionalBoolean.t);
|
||||
break;
|
||||
case tok!"out":
|
||||
if (!peekBackIs(tok!"}")
|
||||
&& astInformation.contractLocations.canFindIndex(current.index))
|
||||
newline();
|
||||
else if (peekBackIsKeyword)
|
||||
write(" ");
|
||||
if (!peekBackIsSlashSlash) {
|
||||
if (!peekBackIs(tok!"}")
|
||||
&& astInformation.contractLocations.canFindIndex(current.index))
|
||||
newline();
|
||||
else if (peekBackIsKeyword)
|
||||
write(" ");
|
||||
}
|
||||
writeToken();
|
||||
if (!currentIs(tok!"{") && !currentIs(tok!"comment"))
|
||||
write(" ");
|
||||
|
@ -1220,13 +1222,15 @@ private:
|
|||
break;
|
||||
case tok!"in":
|
||||
immutable isContract = astInformation.contractLocations.canFindIndex(current.index);
|
||||
if (isContract)
|
||||
{
|
||||
indents.popTempIndents();
|
||||
newline();
|
||||
if (!peekBackIsSlashSlash) {
|
||||
if (isContract)
|
||||
{
|
||||
indents.popTempIndents();
|
||||
newline();
|
||||
}
|
||||
else if (!peekBackIsOneOf(false, tok!"(", tok!",", tok!"!"))
|
||||
write(" ");
|
||||
}
|
||||
else if (!peekBackIsOneOf(false, tok!"(", tok!",", tok!"!"))
|
||||
write(" ");
|
||||
writeToken();
|
||||
immutable isFunctionLit = astInformation.funLitStartLocations.canFindIndex(
|
||||
current.index);
|
||||
|
|
|
@ -0,0 +1,40 @@
|
|||
class C
|
||||
{
|
||||
abstract void f1() //
|
||||
in (true);
|
||||
|
||||
abstract void f2() /* */
|
||||
in (true);
|
||||
|
||||
abstract bool f3() //
|
||||
out (r; r);
|
||||
|
||||
abstract bool f4() /* */
|
||||
out (r; r);
|
||||
|
||||
abstract void f5() //
|
||||
do
|
||||
{
|
||||
}
|
||||
|
||||
abstract void f6() /* */
|
||||
do
|
||||
{
|
||||
}
|
||||
|
||||
abstract bool f7() //
|
||||
in (true) //
|
||||
out (r; r) //
|
||||
do //
|
||||
{
|
||||
return true;
|
||||
}
|
||||
|
||||
abstract bool f8() /* */
|
||||
in (true) /* */
|
||||
out (r; r) /* */
|
||||
do /* */
|
||||
{
|
||||
return true;
|
||||
}
|
||||
}
|
|
@ -0,0 +1,40 @@
|
|||
class C
|
||||
{
|
||||
abstract void f1() //
|
||||
in (true);
|
||||
|
||||
abstract void f2() /* */
|
||||
in (true);
|
||||
|
||||
abstract bool f3() //
|
||||
out (r; r);
|
||||
|
||||
abstract bool f4() /* */
|
||||
out (r; r);
|
||||
|
||||
abstract void f5() //
|
||||
do
|
||||
{
|
||||
}
|
||||
|
||||
abstract void f6() /* */
|
||||
do
|
||||
{
|
||||
}
|
||||
|
||||
abstract bool f7() //
|
||||
in (true) //
|
||||
out (r; r) //
|
||||
do //
|
||||
{
|
||||
return true;
|
||||
}
|
||||
|
||||
abstract bool f8() /* */
|
||||
in (true) /* */
|
||||
out (r; r) /* */
|
||||
do /* */
|
||||
{
|
||||
return true;
|
||||
}
|
||||
}
|
|
@ -0,0 +1,36 @@
|
|||
class C {
|
||||
abstract void f1() //
|
||||
in (true);
|
||||
|
||||
abstract void f2() /* */
|
||||
in (true);
|
||||
|
||||
abstract bool f3() //
|
||||
out (r; r);
|
||||
|
||||
abstract bool f4() /* */
|
||||
out (r; r);
|
||||
|
||||
abstract void f5() //
|
||||
do {
|
||||
}
|
||||
|
||||
abstract void f6() /* */
|
||||
do {
|
||||
}
|
||||
|
||||
abstract bool f7() //
|
||||
in (true) //
|
||||
out (r; r) //
|
||||
do //
|
||||
{
|
||||
return true;
|
||||
}
|
||||
|
||||
abstract bool f8() /* */
|
||||
in (true) /* */
|
||||
out (r; r) /* */
|
||||
do /* */ {
|
||||
return true;
|
||||
}
|
||||
}
|
Loading…
Reference in New Issue