1
0
Fork 0
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:
Brian Fiete 2020-12-07 07:53:12 -08:00
parent 8d3b0d9e59
commit 9cd47a784b
9 changed files with 92 additions and 45 deletions

View file

@ -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());