mirror of
https://github.com/beefytech/Beef.git
synced 2025-06-15 06:44:10 +02:00
Made .AllMembers default
This commit is contained in:
parent
4713f5528b
commit
f6132267dd
1 changed files with 3 additions and 2 deletions
|
@ -48,7 +48,8 @@ namespace System
|
||||||
Methods = 0x40,
|
Methods = 0x40,
|
||||||
DynamicBoxing = 0x80,
|
DynamicBoxing = 0x80,
|
||||||
//User = 0x100, // Internal Use
|
//User = 0x100, // Internal Use
|
||||||
All = 0x7F, // Doesn't include dynamic boxing
|
AllMembers = 0x7F,
|
||||||
|
All = 0xFF, // Doesn't include dynamic boxing
|
||||||
|
|
||||||
ApplyToInnerTypes = 0x200,
|
ApplyToInnerTypes = 0x200,
|
||||||
}
|
}
|
||||||
|
@ -103,7 +104,7 @@ namespace System
|
||||||
[AttributeUsage(.All)]
|
[AttributeUsage(.All)]
|
||||||
public struct ReflectAttribute : Attribute
|
public struct ReflectAttribute : Attribute
|
||||||
{
|
{
|
||||||
public this(ReflectKind reflectKind = .All)
|
public this(ReflectKind reflectKind = .AllMembers)
|
||||||
{
|
{
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue