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:
parent
966ea5d526
commit
e90e8aee47
1 changed files with 2 additions and 2 deletions
|
@ -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;
|
||||
}
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue