mirror of
https://github.com/danbulant/Cosmos
synced 2026-05-19 12:30:32 +00:00
22 lines
No EOL
447 B
C#
22 lines
No EOL
447 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using System.Text;
|
|
|
|
namespace EcmaCil.IL
|
|
{
|
|
public class InstructionMethod : BaseInstruction
|
|
{
|
|
public InstructionMethod(InstructionKindEnum aKind, int aIndex, MethodMeta aValue)
|
|
: base(aKind, aIndex)
|
|
{
|
|
Value = aValue;
|
|
}
|
|
|
|
public MethodMeta Value
|
|
{
|
|
get;
|
|
private set;
|
|
}
|
|
}
|
|
} |