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

Fixed null conditional mixin invocation

This commit is contained in:
Brian Fiete 2025-01-25 08:12:18 -08:00
parent 7db915cb4e
commit d92f27a091
2 changed files with 2 additions and 6 deletions

View file

@ -4423,12 +4423,7 @@ void BfModule::Visit(BfDeleteStatement* deleteStmt)
}
void BfModule::Visit(BfSwitchStatement* switchStmt)
{
if (mModuleName == "BeefTest_TestProgram")
{
NOP;
}
{
BfScopeData outerScope;
outerScope.mInnerIsConditional = false;
outerScope.mCloseNode = switchStmt;