Cosmos/source2/IL2CPU/Cosmos.IL2CPU/IL/Constrained.cs
kudzu_cp 2249797e61
2012-08-13 00:39:42 +00:00

19 lines
582 B
C#

using System;
namespace Cosmos.IL2CPU.X86.IL
{
[Cosmos.IL2CPU.OpCode(ILOpCode.Code.Constrained)]
public class Constrained: ILOp
{
public Constrained(Cosmos.Assembler.Assembler aAsmblr):base(aAsmblr)
{
}
public override void Execute(MethodInfo aMethod, ILOpCode aOpCode) {
#warning TODO: This needs to either be implemented, or needs to throw a NotImplementedException!
// todo: Implement correct Constrained support
//throw new NotImplementedException("Constrained used in '" + aMethod.MethodBase.GetFullName() + "'");
}
}
}