Cosmos/Users/Matthijs/Testing/IRs/EcmaCil/IL/InstructionSwitch.cs

21 lines
409 B
C#

using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
namespace EcmaCil.IL
{
public class InstructionSwitch: BaseInstruction
{
public InstructionSwitch(int aCurrentIndex)
: base(InstructionKindEnum.Switch, aCurrentIndex)
{
}
public BaseInstruction[] Targets
{
get;
set;
}
}
}