mirror of
https://github.com/beefytech/Beef.git
synced 2025-06-11 04:52:21 +02:00
Fixed invocation attributes on valueless member calls
This commit is contained in:
parent
06fe065e2b
commit
a85b09729c
1 changed files with 1 additions and 1 deletions
|
@ -5853,7 +5853,7 @@ BfTypedValue BfExprEvaluator::CreateCall(BfAstNode* targetSrc, BfMethodInstance*
|
||||||
|
|
||||||
bool hadAttrs = false;
|
bool hadAttrs = false;
|
||||||
int paramIdx = 0;
|
int paramIdx = 0;
|
||||||
bool doingThis = !methodDef->mIsStatic;
|
bool doingThis = methodInstance->HasThis();
|
||||||
int argIdx = 0;
|
int argIdx = 0;
|
||||||
|
|
||||||
if (methodDef->mHasExplicitThis)
|
if (methodDef->mHasExplicitThis)
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue