1
0
Fork 0
mirror of https://github.com/beefytech/Beef.git synced 2025-06-10 12:32:20 +02:00

Property reformat fixes

This commit is contained in:
Brian Fiete 2020-09-14 11:55:18 -07:00
parent ecc4fe1ce5
commit 6edb74aaf9

View file

@ -2387,6 +2387,7 @@ void BfPrinter::Visit(BfPropertyDeclaration* propertyDeclaration)
ExpectNewLine();
QueueVisitChild(propertyDeclaration->mAttributes);
ExpectNewLine();
ExpectSpace();
QueueVisitChild(propertyDeclaration->mProtectionSpecifier);
ExpectSpace();
QueueVisitChild(propertyDeclaration->mConstSpecifier);
@ -2441,6 +2442,7 @@ void BfPrinter::Visit(BfPropertyDeclaration* propertyDeclaration)
}
else
{
ExpectSpace();
QueueVisitChild(propertyDeclaration->mDefinitionBlock);
ExpectSpace();
for (auto method : propertyDeclaration->mMethods)