2018-10-30 19:43:02 -06:00
|
|
|
namespace ChocolArm64.Translation
|
|
|
|
{
|
|
|
|
struct ILOpCodeLog : IILEmit
|
|
|
|
{
|
2019-02-27 23:03:31 -03:00
|
|
|
public string Text { get; }
|
2018-10-30 19:43:02 -06:00
|
|
|
|
|
|
|
public ILOpCodeLog(string text)
|
|
|
|
{
|
2019-02-27 23:03:31 -03:00
|
|
|
Text = text;
|
2018-10-30 19:43:02 -06:00
|
|
|
}
|
|
|
|
|
2018-12-10 22:58:52 -02:00
|
|
|
public void Emit(ILMethodBuilder context)
|
2018-10-30 19:43:02 -06:00
|
|
|
{
|
2019-02-27 23:03:31 -03:00
|
|
|
context.Generator.EmitWriteLine(Text);
|
2018-10-30 19:43:02 -06:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|