1
0
Fork 0
mirror of https://github.com/beefytech/Beef.git synced 2025-06-18 08:06:04 +02:00

Minlib fixes

This commit is contained in:
Brian Fiete 2021-01-09 04:55:37 -08:00
parent 861c65820f
commit 960ec51842
4 changed files with 263 additions and 70 deletions

View file

@ -231,6 +231,21 @@ namespace System
}
[AttributeUsage(.Method)]
struct OnCompileAttribute : Attribute
{
public enum Kind
{
None,
TypeInit,
TypeDone
}
public this(Kind kind)
{
}
}
[AttributeUsage(.Method)]
public struct ComptimeAttribute : Attribute
{