mirror of
https://github.com/beefytech/Beef.git
synced 2025-06-19 00:20:25 +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
|
@ -290,15 +290,15 @@ namespace System
|
|||
}
|
||||
|
||||
[Comptime(OnlyFromComptime=true)]
|
||||
public static void EmitMethodEntry(ComptimeMethodInfo methodHandle, StringView text)
|
||||
public static void EmitMethodEntry(MethodInfo methodHandle, StringView text)
|
||||
{
|
||||
Comptime_EmitMethodEntry(methodHandle.mNativeMethodInstance, text);
|
||||
Comptime_EmitMethodEntry(methodHandle.[Friend]mData.mComptimeMethodInstance, text);
|
||||
}
|
||||
|
||||
[Comptime(OnlyFromComptime=true)]
|
||||
public static void EmitMethodExit(ComptimeMethodInfo methodHandle, StringView text)
|
||||
public static void EmitMethodExit(MethodInfo methodHandle, StringView text)
|
||||
{
|
||||
Comptime_EmitMethodExit(methodHandle.mNativeMethodInstance, text);
|
||||
Comptime_EmitMethodExit(methodHandle.[Friend]mData.mComptimeMethodInstance, text);
|
||||
}
|
||||
|
||||
[Comptime(ConstEval=true)]
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue