1
0
Fork 0
mirror of https://github.com/beefytech/Beef.git synced 2025-06-10 20:42:21 +02:00

Added label support to 'fallthrough'

This commit is contained in:
Brian Fiete 2023-12-16 07:38:27 -05:00
parent 3f7fc178e5
commit 85273962be
5 changed files with 49 additions and 5 deletions

View file

@ -902,6 +902,7 @@ void BfElementVisitor::Visit(BfFallthroughStatement* fallthroughStmt)
Visit(fallthroughStmt->ToBase());
VisitChild(fallthroughStmt->mFallthroughToken);
VisitChild(fallthroughStmt->mLabel);
}
void BfElementVisitor::Visit(BfForStatement* forStmt)