parent
d100c40dab
commit
94351246f6
|
@ -713,13 +713,13 @@ private:
|
||||||
{
|
{
|
||||||
writeToken();
|
writeToken();
|
||||||
if (spaceAfterParens || parenDepth > 0)
|
if (spaceAfterParens || parenDepth > 0)
|
||||||
write(" ");
|
writeSpace();
|
||||||
}
|
}
|
||||||
else if ((peekIsKeyword() || peekIs(tok!"@")) && spaceAfterParens
|
else if ((peekIsKeyword() || peekIs(tok!"@")) && spaceAfterParens
|
||||||
&& !peekIs(tok!"in") && !peekIs(tok!"is") && !peekIs(tok!"if"))
|
&& !peekIs(tok!"in") && !peekIs(tok!"is") && !peekIs(tok!"if"))
|
||||||
{
|
{
|
||||||
writeToken();
|
writeToken();
|
||||||
write(" ");
|
writeSpace();
|
||||||
}
|
}
|
||||||
else
|
else
|
||||||
writeToken();
|
writeToken();
|
||||||
|
@ -769,14 +769,7 @@ private:
|
||||||
|| currentIs(tok!"identifier"))
|
|| currentIs(tok!"identifier"))
|
||||||
&& !currentIsIndentedTemplateConstraint())
|
&& !currentIsIndentedTemplateConstraint())
|
||||||
{
|
{
|
||||||
if (onNextLine)
|
writeSpace();
|
||||||
{
|
|
||||||
newline();
|
|
||||||
}
|
|
||||||
else
|
|
||||||
{
|
|
||||||
write(" ");
|
|
||||||
}
|
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -1289,14 +1282,7 @@ private:
|
||||||
default:
|
default:
|
||||||
if (peekBackIs(tok!"identifier"))
|
if (peekBackIs(tok!"identifier"))
|
||||||
{
|
{
|
||||||
if (onNextLine)
|
writeSpace();
|
||||||
{
|
|
||||||
newline();
|
|
||||||
}
|
|
||||||
else
|
|
||||||
{
|
|
||||||
write(" ");
|
|
||||||
}
|
|
||||||
}
|
}
|
||||||
if (index + 1 < tokens.length)
|
if (index + 1 < tokens.length)
|
||||||
{
|
{
|
||||||
|
@ -1310,14 +1296,7 @@ private:
|
||||||
writeToken();
|
writeToken();
|
||||||
if (!currentIsIndentedTemplateConstraint())
|
if (!currentIsIndentedTemplateConstraint())
|
||||||
{
|
{
|
||||||
if (onNextLine)
|
writeSpace();
|
||||||
{
|
|
||||||
newline();
|
|
||||||
}
|
|
||||||
else
|
|
||||||
{
|
|
||||||
write(" ");
|
|
||||||
}
|
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
@ -1943,6 +1922,18 @@ private:
|
||||||
indents.push(type, detail);
|
indents.push(type, detail);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
void writeSpace()
|
||||||
|
{
|
||||||
|
if (onNextLine)
|
||||||
|
{
|
||||||
|
newline();
|
||||||
|
}
|
||||||
|
else
|
||||||
|
{
|
||||||
|
write(" ");
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
const pure @safe @nogc:
|
const pure @safe @nogc:
|
||||||
|
|
||||||
size_t expressionEndIndex(size_t i, bool matchComma = false) nothrow
|
size_t expressionEndIndex(size_t i, bool matchComma = false) nothrow
|
||||||
|
|
|
@ -0,0 +1,40 @@
|
||||||
|
deprecated("foo")
|
||||||
|
void test()
|
||||||
|
{
|
||||||
|
}
|
||||||
|
|
||||||
|
package(foo)
|
||||||
|
void bar()
|
||||||
|
{
|
||||||
|
}
|
||||||
|
|
||||||
|
@uda()
|
||||||
|
void baz()
|
||||||
|
{
|
||||||
|
}
|
||||||
|
|
||||||
|
deprecated
|
||||||
|
deprecated_()
|
||||||
|
{
|
||||||
|
}
|
||||||
|
|
||||||
|
@uda
|
||||||
|
void uda_()
|
||||||
|
{
|
||||||
|
}
|
||||||
|
|
||||||
|
@property
|
||||||
|
void property()
|
||||||
|
{
|
||||||
|
}
|
||||||
|
|
||||||
|
deprecated("Reason") @uda
|
||||||
|
void propertyuda()
|
||||||
|
{
|
||||||
|
}
|
||||||
|
|
||||||
|
deprecated("Reason")
|
||||||
|
@uda
|
||||||
|
void udaproperty()
|
||||||
|
{
|
||||||
|
}
|
|
@ -0,0 +1 @@
|
||||||
|
--keep_line_breaks=true
|
|
@ -0,0 +1,40 @@
|
||||||
|
deprecated("foo")
|
||||||
|
void test()
|
||||||
|
{
|
||||||
|
}
|
||||||
|
|
||||||
|
package(foo)
|
||||||
|
void bar()
|
||||||
|
{
|
||||||
|
}
|
||||||
|
|
||||||
|
@uda()
|
||||||
|
void baz()
|
||||||
|
{
|
||||||
|
}
|
||||||
|
|
||||||
|
deprecated
|
||||||
|
deprecated_()
|
||||||
|
{
|
||||||
|
}
|
||||||
|
|
||||||
|
@uda
|
||||||
|
void uda_()
|
||||||
|
{
|
||||||
|
}
|
||||||
|
|
||||||
|
@property
|
||||||
|
void property()
|
||||||
|
{
|
||||||
|
}
|
||||||
|
|
||||||
|
deprecated("Reason") @uda
|
||||||
|
void propertyuda()
|
||||||
|
{
|
||||||
|
}
|
||||||
|
|
||||||
|
deprecated("Reason")
|
||||||
|
@uda
|
||||||
|
void udaproperty()
|
||||||
|
{
|
||||||
|
}
|
|
@ -0,0 +1,32 @@
|
||||||
|
deprecated("foo")
|
||||||
|
void test() {
|
||||||
|
}
|
||||||
|
|
||||||
|
package(foo)
|
||||||
|
void bar() {
|
||||||
|
}
|
||||||
|
|
||||||
|
@uda()
|
||||||
|
void baz() {
|
||||||
|
}
|
||||||
|
|
||||||
|
deprecated
|
||||||
|
deprecated_() {
|
||||||
|
}
|
||||||
|
|
||||||
|
@uda
|
||||||
|
void uda_() {
|
||||||
|
}
|
||||||
|
|
||||||
|
@property
|
||||||
|
void property() {
|
||||||
|
}
|
||||||
|
|
||||||
|
deprecated("Reason") @uda
|
||||||
|
void propertyuda() {
|
||||||
|
}
|
||||||
|
|
||||||
|
deprecated("Reason")
|
||||||
|
@uda
|
||||||
|
void udaproperty() {
|
||||||
|
}
|
Loading…
Reference in New Issue