| 3549 | } |
| 3550 | |
| 3551 | int BfResolvedTypeSet::Hash(BfType* type, LookupContext* ctx, bool allowRef, int hashSeed) |
| 3552 | { |
| 3553 | int hashVal = DoHash(type, ctx, allowRef, hashSeed); |
| 3554 | if (hashSeed == 0) |
| 3555 | return hashVal; |
| 3556 | return HASH_MIX(hashVal, hashSeed); |
| 3557 | } |
| 3558 | |
| 3559 | void BfResolvedTypeSet::HashGenericArguments(BfTypeReference* typeRef, LookupContext* ctx, int& hashVal, int hashSeed) |
| 3560 | { |
no test coverage detected