mirror of
https://github.com/beefytech/Beef.git
synced 2025-06-10 12:32:20 +02:00
offsetof
This commit is contained in:
parent
507fb82e4a
commit
4cda126188
11 changed files with 156 additions and 10 deletions
|
@ -492,6 +492,16 @@ void BfElementVisitor::Visit(BfTypeAttrExpression* typeAttrExpr)
|
|||
VisitChild(typeAttrExpr->mCloseParen);
|
||||
}
|
||||
|
||||
void BfElementVisitor::Visit(BfOffsetOfExpression* offsetOfExpr)
|
||||
{
|
||||
VisitChild(offsetOfExpr->mToken);
|
||||
VisitChild(offsetOfExpr->mOpenParen);
|
||||
VisitChild(offsetOfExpr->mTypeRef);
|
||||
VisitChild(offsetOfExpr->mCommaToken);
|
||||
VisitChild(offsetOfExpr->mMemberName);
|
||||
VisitChild(offsetOfExpr->mCloseParen);
|
||||
}
|
||||
|
||||
void BfElementVisitor::Visit(BfDefaultExpression* defaultExpr)
|
||||
{
|
||||
Visit(defaultExpr->ToBase());
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue