mirror of
https://github.com/danbulant/Cosmos
synced 2026-05-21 21:38:52 +00:00
21 lines
409 B
C#
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;
|
|
}
|
|
}
|
|
}
|