| 920 | } |
| 921 | |
| 922 | bool Beefy::BfMethodInstance::IsSpecializedGenericMethodOrType() |
| 923 | { |
| 924 | if ((mMethodInfoEx != NULL) && (mMethodInfoEx->mGenericParams.size() != 0) && (!mIsUnspecialized)) |
| 925 | return true; |
| 926 | auto owner = GetOwner(); |
| 927 | if (!owner->IsGenericTypeInstance()) |
| 928 | return false; |
| 929 | BfTypeInstance* genericTypeInstance = (BfTypeInstance*)owner; |
| 930 | return !genericTypeInstance->mGenericTypeInfo->mIsUnspecialized; |
| 931 | } |
| 932 | |
| 933 | bool BfMethodInstance::IsSpecializedByAutoCompleteMethod() |
| 934 | { |
no test coverage detected