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:
parent
4a08a9702e
commit
7f726ef9ba
8 changed files with 438 additions and 142 deletions
|
@ -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;
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue