mirror of
https://github.com/beefytech/Beef.git
synced 2025-06-10 04:22:20 +02:00
Reflect Filtered, extension attribs fix, generic arg BfAstNode
This commit is contained in:
parent
6315d81207
commit
361be9dc92
13 changed files with 75 additions and 26 deletions
|
@ -1136,6 +1136,7 @@ public:
|
|||
return mTypeCode == BfTypeCode_Extension;
|
||||
}
|
||||
bool HasSource(BfSource* source);
|
||||
bool HasCustomAttributes();
|
||||
};
|
||||
|
||||
struct BfTypeDefMapFuncs : public MultiHashSetFuncs
|
||||
|
@ -1463,6 +1464,7 @@ enum BfOptionFlags
|
|||
BfOptionFlags_ReflectStaticMethods = 0x800,
|
||||
BfOptionFlags_ReflectNonStaticMethods = 0x1000,
|
||||
BfOptionFlags_ReflectConstructors = 0x2000,
|
||||
BfOptionFlags_ReflectAlwaysIncludeFiltered = 0x4000,
|
||||
|
||||
BfOptionFlags_Reflect_MethodMask = BfOptionFlags_ReflectStaticMethods | BfOptionFlags_ReflectNonStaticMethods | BfOptionFlags_ReflectConstructors,
|
||||
BfOptionFlags_Mask = 0x3FFF
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue