1
0
Fork 0
mirror of https://github.com/beefytech/Beef.git synced 2025-06-09 03:52:19 +02:00

Fixed qualified attribute name lookup

This commit is contained in:
Brian Fiete 2022-07-02 10:43:34 -07:00
parent 6ded6a37cc
commit 52897cc936

View file

@ -10882,6 +10882,8 @@ BfType* BfModule::ResolveTypeRef(BfTypeReference* typeRef, BfPopulateType popula
genericTypeRef->mElementType->ToString(findName);
else
qualifiedTypeRef->mRight->ToString(findName);
if ((resolveFlags & BfResolveTypeRefFlag_Attribute) != 0)
findName += "Attribute";
}
else if ((activeTypeDef != NULL) && (activeTypeDef->mNamespace.EndsWith(leftComposite)))
{