Cosmos/source/Indy.IL2CPU.IL/MethodFooterOp.cs
mterwoord_cp e7ffcc64f2
2007-11-22 19:08:49 +00:00

15 lines
390 B
C#

using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using Mono.Cecil.Cil;
namespace Indy.IL2CPU.IL {
public abstract class MethodFooterOp: Op {
public const string EndOfMethodLabelName = ".END__OF__METHOD";
public MethodFooterOp(Instruction aInstruction, MethodInformation aMethodInfo)
: base(aInstruction, aMethodInfo) {
}
}
}