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) { } } }