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:
parent
687dde063f
commit
195a699af4
3 changed files with 33 additions and 3 deletions
|
@ -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;
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue