1
0
Fork 0
mirror of https://github.com/beefytech/Beef.git synced 2025-06-10 12:32:20 +02:00

Fixed reflection of generic attributes

This commit is contained in:
Brian Fiete 2022-03-03 12:55:56 -08:00
parent b1a772e652
commit b364760105
2 changed files with 69 additions and 0 deletions

View file

@ -1890,6 +1890,7 @@ public:
bool TypeHasParentOrEquals(BfTypeDef* checkChildTypeDef, BfTypeDef* checkParentTypeDef);
BfTypeDef* FindCommonOuterType(BfTypeDef* type, BfTypeDef* type2);
bool TypeIsSubTypeOf(BfTypeInstance* srcType, BfTypeInstance* wantType, bool checkAccessibility = true);
bool TypeIsSubTypeOf(BfTypeInstance* srcType, BfTypeDef* wantType);
int GetTypeDistance(BfType* fromType, BfType* toType);
bool IsTypeMoreSpecific(BfType* leftType, BfType* rightType);
bool GetBasePropertyDef(BfPropertyDef*& propDef, BfTypeInstance*& typeInst);