MCPcopy Create free account
hub / github.com/beefytech/Beef / IsInnerType

Method IsInnerType

IDEHelper/Compiler/BfModuleTypeUtils.cpp:8835–8843  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

8833}
8834
8835bool BfModule::IsInnerType(BfType* checkInnerType, BfType* checkOuterType)
8836{
8837 BfType* outerType = GetOuterType(checkInnerType);
8838 if (outerType == NULL)
8839 return false;
8840 if (outerType == checkOuterType)
8841 return true;
8842 return IsInnerType(outerType, checkOuterType);
8843}
8844
8845bool BfModule::IsInnerType(BfTypeDef* checkInnerType, BfTypeDef* checkOuterType)
8846{

Callers 1

CheckMemberReferenceMethod · 0.80

Calls 2

GetCombinedPartialMethod · 0.80
GetDefinitionMethod · 0.80

Tested by

no test coverage detected