mirror of
https://github.com/beefytech/Beef.git
synced 2025-06-19 08:30:25 +02:00
29 lines
686 B
Beef
29 lines
686 B
Beef
namespace System
|
|
{
|
|
static class Compiler
|
|
{
|
|
[LinkName("#CallerLineNum")]
|
|
public static extern int CallerLineNum;
|
|
|
|
[LinkName("#CallerFilePath")]
|
|
public static extern String CallerFilePath;
|
|
|
|
[LinkName("#CallerFileName")]
|
|
public static extern String CallerFileName;
|
|
|
|
[LinkName("#CallerFileDir")]
|
|
public static extern String CallerFileDir;
|
|
|
|
[LinkName("#CallerMemberName")]
|
|
public static extern String CallerMemberName;
|
|
|
|
[LinkName("#CallerProject")]
|
|
public static extern String CallerProject;
|
|
|
|
[LinkName("#CallerExpression")]
|
|
public static extern String[Int32.MaxValue] CallerExpression;
|
|
|
|
[LinkName("#TimeLocal")]
|
|
public static extern String TimeLocal;
|
|
}
|
|
}
|