mirror of
https://github.com/beefytech/Beef.git
synced 2025-06-10 04:22:20 +02:00
'using' formatting fix
This commit is contained in:
parent
8020f6b9d3
commit
32be2ba69c
3 changed files with 11 additions and 0 deletions
|
@ -1307,6 +1307,15 @@ void BfPrinter::Visit(BfTokenPairNode* tokenPairNode)
|
|||
VisitChild(tokenPairNode->mRight);
|
||||
}
|
||||
|
||||
void BfPrinter::Visit(BfUsingSpecifierNode* usingSpecifier)
|
||||
{
|
||||
Visit(usingSpecifier->ToBase());
|
||||
|
||||
VisitChild(usingSpecifier->mProtection);
|
||||
ExpectSpace();
|
||||
VisitChild(usingSpecifier->mUsingToken);
|
||||
}
|
||||
|
||||
void BfPrinter::Visit(BfLiteralExpression* literalExpr)
|
||||
{
|
||||
Visit(literalExpr->ToBase());
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue