Cosmos/Users/Matthijs/Testing/IRs/EcmaCil/IL/InstructionSwitch.cs
kudzu_cp a58ad95c10
2014-07-14 15:56:02 +00:00

21 lines
430 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;
}
}
}