mirror of
https://github.com/beefytech/Beef.git
synced 2025-06-25 02:58:02 +02:00
Merged comptime reflection info into normal reflection data types
This commit is contained in:
parent
b0c6dd7e43
commit
e7f0b21cf6
20 changed files with 432 additions and 453 deletions
|
@ -552,12 +552,12 @@ namespace System
|
|||
|
||||
interface IOnFieldInit
|
||||
{
|
||||
void OnFieldInit(ComptimeFieldInfo type, Self* prev) mut;
|
||||
void OnFieldInit(FieldInfo fieldInfo, Self* prev) mut;
|
||||
}
|
||||
|
||||
interface IOnMethodInit
|
||||
{
|
||||
void OnMethodInit(ComptimeMethodInfo type, Self* prev) mut;
|
||||
void OnMethodInit(MethodInfo methodInfo, Self* prev) mut;
|
||||
}
|
||||
|
||||
interface IComptimeTypeApply
|
||||
|
@ -567,6 +567,6 @@ namespace System
|
|||
|
||||
interface IComptimeMethodApply
|
||||
{
|
||||
void ApplyToMethod(ComptimeMethodInfo methodInfo);
|
||||
void ApplyToMethod(MethodInfo methodInfo);
|
||||
}
|
||||
}
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue