mirror of
https://github.com/beefytech/Beef.git
synced 2025-06-23 01:58:00 +02:00
Start of anonymous 'using' field
This commit is contained in:
parent
b886f3d3c3
commit
79e2ff5165
13 changed files with 859 additions and 498 deletions
|
@ -203,6 +203,14 @@ void BfElementVisitor::Visit(BfTokenPairNode* tokenPairNode)
|
|||
VisitChild(tokenPairNode->mRight);
|
||||
}
|
||||
|
||||
void BfElementVisitor::Visit(BfUsingSpecifierNode* usingSpecifier)
|
||||
{
|
||||
Visit(usingSpecifier->ToBase());
|
||||
|
||||
VisitChild(usingSpecifier->mProtection);
|
||||
VisitChild(usingSpecifier->mUsingToken);
|
||||
}
|
||||
|
||||
void BfElementVisitor::Visit(BfLiteralExpression* literalExpr)
|
||||
{
|
||||
Visit(literalExpr->ToBase());
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue