| 3842 | } |
| 3843 | |
| 3844 | BfTypeDef* BfSystem::GetOuterTypeNonPartial(BfTypeDef* typeDef) |
| 3845 | { |
| 3846 | auto checkType = typeDef->mOuterType; |
| 3847 | if ((checkType == NULL) || (!checkType->mIsPartial)) |
| 3848 | return checkType; |
| 3849 | |
| 3850 | return GetCombinedPartial(checkType); |
| 3851 | } |
| 3852 | |
| 3853 | int BfSystem::GetGenericParamIdx(const Array<BfGenericParamDef*>& genericParams, const StringImpl& name) |
| 3854 | { |