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

CTFE updates, including heap support

This commit is contained in:
Brian Fiete 2020-12-17 04:51:05 -08:00
parent 792d92d014
commit 6bb363fb4b
29 changed files with 3050 additions and 595 deletions

View file

@ -55,7 +55,8 @@ enum BfMethodNameFlags : uint8
BfMethodNameFlag_None = 0,
BfMethodNameFlag_ResolveGenericParamNames = 1,
BfMethodNameFlag_OmitTypeName = 2,
BfMethodNameFlag_IncludeReturnType = 4
BfMethodNameFlag_IncludeReturnType = 4,
BfMethodNameFlag_OmitParams = 8
};
enum BfGetMethodInstanceFlags : uint16
@ -1416,7 +1417,7 @@ public:
mMethodRefFlags = BfMethodRefFlag_None;
}
BfMethodRef(BfMethodInstance* methodInstance);
BfMethodRef(BfMethodInstance* methodInstance);
operator BfMethodInstance*() const;
bool IsNull() { return mTypeInstance == NULL; };