Cosmos/source2/Users/Matthijs/Testing/IRs/EcmaCil/MethodBodyMeta.cs
mterwoord_cp d42206e826
2011-02-10 14:41:03 +00:00

34 lines
609 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;
}
}
}