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

Added reflected TypeDeclaration support for comptime

This commit is contained in:
Brian Fiete 2025-01-14 10:16:46 -08:00
parent 89651c4a76
commit e30972d3af
10 changed files with 753 additions and 250 deletions

View file

@ -15,6 +15,15 @@ namespace System
// including the vtable and interface slots
}
public class TypeDeclaration
{
protected TypeId mTypeId;
protected TypeId mBaseTypeId;
protected TypeId mOuterTypeId;
protected TypeFlags mTypeFlags;
protected TypeCode mTypeCode;
}
[Ordered, AlwaysInclude(AssumeInstantiated=true)]
public class Type
{