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

Support for sized array 'params' parameters

This commit is contained in:
Brian Fiete 2022-01-21 14:23:48 -05:00
parent c1a1baea5f
commit 939d05e401
4 changed files with 59 additions and 6 deletions

View file

@ -1081,7 +1081,7 @@ public:
public:
bool IsGenericParam() override { return true; }
bool IsTypeGenericParam() override { return mGenericParamKind == BfGenericParamKind_Type; }
bool IsMethodGenericParam() override { return mGenericParamKind == BfGenericParamKind_Type; }
bool IsMethodGenericParam() override { return mGenericParamKind == BfGenericParamKind_Method; }
virtual bool IsUnspecializedType() override { return true; }
virtual bool IsReified() override { return false; }
};