1
0
Fork 0
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:
Brian Fiete 2021-12-30 06:14:18 -05:00
parent 06fe065e2b
commit a85b09729c

View file

@ -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)