1
0
Fork 0
mirror of https://github.com/beefytech/Beef.git synced 2025-06-09 03:52:19 +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)
{
str += "method NULL";
str += "method reference NULL";
return;
}
str += "method ";
str += "method reference ";
str += MethodToString(methodInstance);
return;
}