Cosmos/source2/Users/Matthijs ter Woord/Testing/IRs/EcmaCil/IL/InstructionInt32.cs

22 lines
No EOL
451 B
C#

using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
namespace EcmaCil.IL
{
public class InstructionInt32: BaseInstruction
{
public InstructionInt32(InstructionKindEnum aKind, int aIndex, int aValue)
: base(aKind, aIndex)
{
Value = aValue;
}
public int Value
{
get;
private set;
}
}
}