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

Method HasSource

IDEHelper/Compiler/BfSystem.cpp:1033–1045  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

1031}
1032
1033bool BfTypeDef::HasSource(BfSource* source)
1034{
1035 if (mNextRevision != NULL)
1036 return mNextRevision->HasSource(source);
1037 if (mSource == source)
1038 return true;
1039 if ((mSource != NULL) && (mSource->mNextRevision != NULL) && (mSource->mNextRevision == source))
1040 return true;
1041 for (auto partial : mPartials)
1042 if (partial->mSource == source)
1043 return true;
1044 return false;
1045}
1046
1047bool BfTypeDef::HasCustomAttributes()
1048{

Callers 4

ProcessWorkListMethod · 0.80
HandleChangedTypeDefMethod · 0.80
UpdateRevisedTypesMethod · 0.80
AddToRebuildTypeListMethod · 0.80

Calls

no outgoing calls

Tested by

no test coverage detected