parent
024c6e6a63
commit
8f779b33bf
|
@ -1135,7 +1135,7 @@ private:
|
||||||
else if (peekBackIsKeyword)
|
else if (peekBackIsKeyword)
|
||||||
write(" ");
|
write(" ");
|
||||||
writeToken();
|
writeToken();
|
||||||
if (!currentIs(tok!"(") && !currentIs(tok!"{") && !currentIs(tok!"comment"))
|
if (!currentIs(tok!"{") && !currentIs(tok!"comment"))
|
||||||
write(" ");
|
write(" ");
|
||||||
break;
|
break;
|
||||||
case tok!"try":
|
case tok!"try":
|
||||||
|
@ -1169,7 +1169,7 @@ private:
|
||||||
current.index);
|
current.index);
|
||||||
if (isFunctionLit && config.dfmt_brace_style == BraceStyle.allman)
|
if (isFunctionLit && config.dfmt_brace_style == BraceStyle.allman)
|
||||||
newline();
|
newline();
|
||||||
else if (!isContract)
|
else if (!isContract || currentIs(tok!"("))
|
||||||
write(" ");
|
write(" ");
|
||||||
break;
|
break;
|
||||||
case tok!"is":
|
case tok!"is":
|
||||||
|
@ -1218,6 +1218,11 @@ private:
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
goto default;
|
goto default;
|
||||||
|
case tok!"invariant":
|
||||||
|
writeToken();
|
||||||
|
if (currentIs(tok!"("))
|
||||||
|
write(" ");
|
||||||
|
break;
|
||||||
default:
|
default:
|
||||||
if (peekBackIs(tok!"identifier"))
|
if (peekBackIs(tok!"identifier"))
|
||||||
write(" ");
|
write(" ");
|
||||||
|
|
|
@ -13,8 +13,8 @@ do
|
||||||
}
|
}
|
||||||
|
|
||||||
int bar(int arg)
|
int bar(int arg)
|
||||||
in(arg > 0)
|
in (arg > 0)
|
||||||
out(; true)
|
out (; true)
|
||||||
out /*Major*/ ( /*Tom*/ result /*To ground control*/ ; result == 0)
|
out /*Major*/ ( /*Tom*/ result /*To ground control*/ ; result == 0)
|
||||||
{
|
{
|
||||||
return 0;
|
return 0;
|
||||||
|
|
|
@ -0,0 +1,4 @@
|
||||||
|
struct S
|
||||||
|
{
|
||||||
|
invariant (true);
|
||||||
|
}
|
|
@ -0,0 +1,4 @@
|
||||||
|
struct S
|
||||||
|
{
|
||||||
|
invariant(true);
|
||||||
|
}
|
|
@ -10,8 +10,8 @@ do {
|
||||||
}
|
}
|
||||||
|
|
||||||
int bar(int arg)
|
int bar(int arg)
|
||||||
in(arg > 0)
|
in (arg > 0)
|
||||||
out(; true)
|
out (; true)
|
||||||
out /*Major*/ ( /*Tom*/ result /*To ground control*/ ; result == 0) {
|
out /*Major*/ ( /*Tom*/ result /*To ground control*/ ; result == 0) {
|
||||||
return 0;
|
return 0;
|
||||||
}
|
}
|
||||||
|
|
|
@ -0,0 +1,3 @@
|
||||||
|
struct S {
|
||||||
|
invariant (true);
|
||||||
|
}
|
Loading…
Reference in New Issue