mirror of
https://github.com/beefytech/Beef.git
synced 2025-06-10 04:22:20 +02:00
Fixed MethodToString for unspecialized type variations
This commit is contained in:
parent
f8175e84a1
commit
76cd052c4a
7 changed files with 41 additions and 17 deletions
|
@ -650,6 +650,11 @@ bool BfMethodInstance::IsSpecializedByAutoCompleteMethod()
|
|||
return false;
|
||||
}
|
||||
|
||||
bool BfMethodInstance::IsOrInUnspecializedVariation()
|
||||
{
|
||||
return (mIsUnspecializedVariation) || (GetOwner()->IsUnspecializedTypeVariation());
|
||||
}
|
||||
|
||||
bool BfMethodInstance::HasExternConstraints()
|
||||
{
|
||||
return (mMethodInfoEx != NULL) && (mMethodInfoEx->mGenericParams.size() > mMethodInfoEx->mMethodGenericArguments.size());
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue