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

Fixed early-exit cases in ctor

This commit is contained in:
Brian Fiete 2020-12-04 06:29:25 -08:00
parent 687dde063f
commit 195a699af4
3 changed files with 33 additions and 3 deletions

View file

@ -403,6 +403,7 @@ public:
bool mHadScopeValueRetain;
bool mIsDeferredBlock;
bool mAllowVariableDeclarations;
bool mInInitBlock;
BfBlock* mAstBlock;
BfAstNode* mCloseNode;
BfExprEvaluator* mExprEvaluator;
@ -438,6 +439,7 @@ public:
mIsDeferredBlock = false;
mAllowTargeting = true;
mAllowVariableDeclarations = true;
mInInitBlock = false;
mMixinDepth = 0;
mScopeDepth = 0;
mScopeLocalId = -1;