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

Changed printing of methodRef

This commit is contained in:
Brian Fiete 2020-05-08 07:07:07 -07:00
parent 966ea5d526
commit e90e8aee47

View file

@ -10233,10 +10233,10 @@ void BfModule::DoTypeToString(StringImpl& str, BfType* resolvedType, BfTypeNameF
} }
if (methodInstance == NULL) if (methodInstance == NULL)
{ {
str += "method NULL"; str += "method reference NULL";
return; return;
} }
str += "method "; str += "method reference ";
str += MethodToString(methodInstance); str += MethodToString(methodInstance);
return; return;
} }