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

Added string addition

This commit is contained in:
Brian Fiete 2020-12-24 11:32:19 -08:00
parent 2ea366ce89
commit 840a60697d
2 changed files with 41 additions and 0 deletions

View file

@ -5528,6 +5528,9 @@ BfTypedValue BfExprEvaluator::CreateCall(BfMethodMatcher* methodMatcher, BfTyped
BF_ASSERT(castedTarget);
target = castedTarget;
}
PerformCallChecks(moduleMethodInstance.mMethodInstance, methodMatcher->mTargetSrc);
return CreateCall(methodMatcher->mTargetSrc, target, BfTypedValue(), methodMatcher->mBestMethodDef, moduleMethodInstance, false, methodMatcher->mArguments);
}