mirror of
https://github.com/beefytech/Beef.git
synced 2025-06-10 12:32:20 +02:00
Added const expr reflection type
This commit is contained in:
parent
674f0f6a56
commit
0eb19245eb
6 changed files with 214 additions and 23 deletions
|
@ -180,11 +180,12 @@ enum BfTypeFlags
|
|||
BfTypeFlags_SizedArray = 0x1000,
|
||||
BfTypeFlags_Splattable = 0x2000,
|
||||
BfTypeFlags_Union = 0x4000,
|
||||
BfTypeFlags_ConstExpr = 0x8000,
|
||||
//
|
||||
BfTypeFlags_WantsMarking = 0x8000,
|
||||
BfTypeFlags_Delegate = 0x10000,
|
||||
BfTypeFlags_Function = 0x20000,
|
||||
BfTypeFlags_HasDestructor = 0x40000,
|
||||
BfTypeFlags_WantsMarking = 0x10000,
|
||||
BfTypeFlags_Delegate = 0x20000,
|
||||
BfTypeFlags_Function = 0x40000,
|
||||
BfTypeFlags_HasDestructor = 0x80000,
|
||||
};
|
||||
|
||||
enum BfMethodFlags
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue