1
0
Fork 0
mirror of https://github.com/beefytech/Beef.git synced 2025-06-09 03:52:19 +02:00

MethodToString improvements

This commit is contained in:
Brian Fiete 2020-10-08 10:17:03 -07:00
parent b28a87136f
commit 3fb7576bf9
2 changed files with 30 additions and 8 deletions

View file

@ -9977,6 +9977,9 @@ StringT<128> BfModule::MethodToString(BfMethodInstance* methodInst, BfMethodName
else
methodName += methodDefName;
if (methodDef->mMethodType == BfMethodType_Mixin)
methodName += "!";
BfTypeVector newMethodGenericArgs;
if ((methodInst->mMethodInfoEx != NULL) && (methodInst->mMethodInfoEx->mMethodGenericArguments.size() != 0))
{