tlang-runtime-compiler/TLang.Common/LabelInstruction.cs

25 lines
406 B
C#
Raw Normal View History

2023-07-29 00:11:09 +00:00
using System.IO;
namespace TLang.Common
{
public class LabelInstruction : Instruction
{
public string Key {get;set;}
public LabelInstruction(string key)
{
Key = key;
}
public override int CalculateLength()
{
return 0;
}
public override void WriteData(Stream strm)
{
}
}
}