Cosmos/Users/Matthijs/Testing/IRs/EcmaCil/MethodBodyMeta.cs

34 lines
575 B
C#

using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
namespace EcmaCil
{
public class MethodBodyMeta
{
public LocalVariableMeta[] LocalVariables
{
get;
set;
}
public ExceptionHandlingClauseMeta[] ExceptionHandlingClauses
{
get;
set;
}
public bool InitLocals
{
get;
set;
}
public IL.BaseInstruction[] Instructions
{
get;
set;
}
}
}