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

Restore original mixin state for deferred block emission

This commit is contained in:
Brian Fiete 2021-10-31 10:39:00 -07:00
parent c939ec1cf6
commit 7f1d8803d9
2 changed files with 6 additions and 0 deletions

View file

@ -423,6 +423,7 @@ public:
bool mIsDeferredBlock;
bool mAllowVariableDeclarations;
bool mInInitBlock;
BfMixinState* mMixinState;
BfBlock* mAstBlock;
BfAstNode* mCloseNode;
BfExprEvaluator* mExprEvaluator;
@ -445,6 +446,7 @@ public:
mPrevScope = NULL;
mLocalVarStart = 0;
mLabelNode = NULL;
mMixinState = NULL;
mAstBlock = NULL;
mCloseNode = NULL;
mExprEvaluator = NULL;