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

Improved @this

This commit is contained in:
Brian Fiete 2022-02-15 06:48:27 -05:00
parent 22a3b47de2
commit 9dcafb7db8
2 changed files with 9 additions and 2 deletions

View file

@ -696,6 +696,7 @@ public:
BfClosureInstanceInfo* mClosureInstanceInfo;
BfMethodDef* mClosureMethodDef;
BfType* mReturnType;
BfTypeInstance* mDelegateType;
BfTypeInstance* mClosureType;
BfDeferredLocalMethod* mActiveDeferredLocalMethod;
Array<BfLocalVariable> mConstLocals; // Locals not inserted into the captured 'this'
@ -719,6 +720,7 @@ public:
mReturnTypeInferState = BfReturnTypeInferState_None;
mActiveDeferredLocalMethod = NULL;
mReturnType = NULL;
mDelegateType = NULL;
mClosureType = NULL;
}
};