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

Class BfMemberSetEntry

IDEHelper/Compiler/BfSystem.h:1060–1078  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

1058};
1059
1060struct BfMemberSetEntry
1061{
1062 BfMemberDef* mMemberDef;
1063
1064 BfMemberSetEntry(BfMemberDef* memberDef)
1065 {
1066 mMemberDef = memberDef;
1067 }
1068
1069 bool operator==(const BfMemberSetEntry& other) const
1070 {
1071 return mMemberDef->mName == other.mMemberDef->mName;
1072 }
1073
1074 bool operator==(const StringImpl& other) const
1075 {
1076 return mMemberDef->mName == other;
1077 }
1078};
1079
1080class BfTypeDefMemberSet : public HashSet<BfMemberSetEntry>
1081{

Callers 4

ProcessMethodMethod · 0.85
SetupIRFunctionMethod · 0.85
DoMethodDeclarationMethod · 0.85
SlotInterfaceMethodMethod · 0.85

Calls

no outgoing calls

Tested by

no test coverage detected