mirror of
https://github.com/beefytech/Beef.git
synced 2025-06-10 12:32:20 +02:00
Added 'protected internal' protection
This commit is contained in:
parent
8d3b0d9e59
commit
9cd47a784b
9 changed files with 92 additions and 45 deletions
|
@ -1090,6 +1090,16 @@ void BfPrinter::Visit(BfTokenNode* tokenNode)
|
|||
}
|
||||
}
|
||||
|
||||
void BfPrinter::Visit(BfTokenPairNode* tokenPairNode)
|
||||
{
|
||||
Visit(tokenPairNode->ToBase());
|
||||
|
||||
VisitChild(tokenPairNode->mLeft);
|
||||
if ((tokenPairNode->mRight != NULL) && (tokenPairNode->mRight->mToken != BfToken_Star))
|
||||
ExpectSpace();
|
||||
VisitChild(tokenPairNode->mRight);
|
||||
}
|
||||
|
||||
void BfPrinter::Visit(BfLiteralExpression* literalExpr)
|
||||
{
|
||||
Visit(literalExpr->ToBase());
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue