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

Added proper support for explicit 'this' in functions

This commit is contained in:
Brian Fiete 2020-07-10 06:40:24 -07:00
parent 4a08a9702e
commit 7f726ef9ba
8 changed files with 438 additions and 142 deletions

View file

@ -238,6 +238,7 @@ public:
BfTypedValue mTarget;
BfIRValue mFunc;
BfMethodInstance* mMethodInstance;
BfType* mBindType;
bool mSkipThis;
bool mSkipMutCheck;
bool mWantsArgs;
@ -248,6 +249,7 @@ public:
BfFunctionBindResult()
{
mMethodInstance = NULL;
mBindType = NULL;
mSkipMutCheck = false;
mWantsArgs = false;
mSkipThis = false;