| 1020 | } |
| 1021 | |
| 1022 | bool BfTypeDef::NameEquals(BfTypeDef* otherTypeDef) |
| 1023 | { |
| 1024 | if (mName != otherTypeDef->mName) |
| 1025 | return false; |
| 1026 | // We can't just check mFullnames, because a namespace of "A" with a type named "B.C" would match |
| 1027 | // a namespace of "A.B" with a type named "C" |
| 1028 | if (mNamespace.mSize != otherTypeDef->mNamespace.mSize) |
| 1029 | return false; |
| 1030 | return mFullName == otherTypeDef->mFullName; |
| 1031 | } |
| 1032 | |
| 1033 | bool BfTypeDef::HasSource(BfSource* source) |
| 1034 | { |
no outgoing calls
no test coverage detected