mirror of
https://github.com/danbulant/Cosmos
synced 2026-05-22 05:48:37 +00:00
22 lines
No EOL
442 B
C#
22 lines
No EOL
442 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using System.Text;
|
|
|
|
namespace EcmaCil.IL
|
|
{
|
|
public class InstructionField: BaseInstruction
|
|
{
|
|
public InstructionField(InstructionKindEnum aKind, int aIndex, FieldMeta aField)
|
|
: base(aKind, aIndex)
|
|
{
|
|
Field = aField;
|
|
}
|
|
|
|
public FieldMeta Field
|
|
{
|
|
get;
|
|
private set;
|
|
}
|
|
}
|
|
} |