mirror of
https://github.com/beefytech/Beef.git
synced 2025-06-10 12:32:20 +02:00
Added [IgnoreErrors] block attribute
This commit is contained in:
parent
65d960a6e6
commit
99419097c5
16 changed files with 307 additions and 79 deletions
|
@ -114,6 +114,14 @@ void BfElementVisitor::Visit(BfStatement* stmt)
|
|||
VisitChild(stmt->mTrailingSemicolon);
|
||||
}
|
||||
|
||||
void BfElementVisitor::Visit(BfAttributedStatement* attribStmt)
|
||||
{
|
||||
Visit(attribStmt->ToBase());
|
||||
|
||||
VisitChild(attribStmt->mAttributes);
|
||||
VisitChild(attribStmt->mStatement);
|
||||
}
|
||||
|
||||
void BfElementVisitor::Visit(BfLabelableStatement* labelableStmt)
|
||||
{
|
||||
Visit(labelableStmt->ToBase());
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue