mirror of
https://github.com/beefytech/Beef.git
synced 2025-06-10 04:22:20 +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;
|
||||
int paramIdx = 0;
|
||||
bool doingThis = !methodDef->mIsStatic;
|
||||
bool doingThis = methodInstance->HasThis();
|
||||
int argIdx = 0;
|
||||
|
||||
if (methodDef->mHasExplicitThis)
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue