2018-10-31 02:43:02 +01:00
|
|
|
namespace ChocolArm64.Translation
|
|
|
|
{
|
|
|
|
struct ILOpCodeLog : IILEmit
|
|
|
|
{
|
2019-02-28 03:03:31 +01:00
|
|
|
public string Text { get; }
|
2018-10-31 02:43:02 +01:00
|
|
|
|
|
|
|
public ILOpCodeLog(string text)
|
|
|
|
{
|
2019-02-28 03:03:31 +01:00
|
|
|
Text = text;
|
2018-10-31 02:43:02 +01:00
|
|
|
}
|
|
|
|
|
2018-12-11 01:58:52 +01:00
|
|
|
public void Emit(ILMethodBuilder context)
|
2018-10-31 02:43:02 +01:00
|
|
|
{
|
2019-02-28 03:03:31 +01:00
|
|
|
context.Generator.EmitWriteLine(Text);
|
2018-10-31 02:43:02 +01:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|